Interface IMetaEnumeration
-
public interface IMetaEnumeration
Represents and enumeration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<java.lang.String,IMetaEnumValue>
getEnumValues()
Returns all possible values for this enumeration and their identifiers.java.lang.String
getName()
Returns the name of this enumeration.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the name of this enumeration.- Returns:
- the enumeration name
-
getEnumValues
java.util.Map<java.lang.String,IMetaEnumValue> getEnumValues()
Returns all possible values for this enumeration and their identifiers.- Returns:
- the values of this enumeration by their identifier
-
-