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

xy.reflect.ui.info.type.enumeration.IEnumerationTypeInfo Maven / Gradle / Ivy

package xy.reflect.ui.info.type.enumeration;

import xy.reflect.ui.info.type.ITypeInfo;

public interface IEnumerationTypeInfo extends ITypeInfo {
	
	Object[] getPossibleValues();
	
	IEnumerationItemInfo getValueInfo(Object value);
	
	boolean isDynamicEnumeration();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy