All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.javabuilders.IAllowedValues Maven / Gradle / Ivy

The newest version!
/**
 * 
 */
package org.javabuilders;

import java.util.Collection;

/**
 * Optional interface that returns what the allowed values for a property.
 * Usually implemented by the property handler
 */
public interface IAllowedValues {

	/**
	 * @return Set of allowed values
	 */
	Collection getAllowedValues();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy