Interface IMetaEnumValue
-
public interface IMetaEnumValue
Represents an enumeration value.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IMetaEnumeration
getEnumeration()
Returns the corresponding enumeration.java.lang.String
getI18NCaptionKey()
Returns the internationalized caption of the enumeration value.java.lang.String
getIdentifier()
Returns the identifier of the enumeration value.java.lang.String
getImage()
Returns the image name for the enumeration value (if any).
-
-
-
Method Detail
-
getEnumeration
IMetaEnumeration getEnumeration()
Returns the corresponding enumeration.- Returns:
- the enumeration
-
getIdentifier
java.lang.String getIdentifier()
Returns the identifier of the enumeration value.- Returns:
- the identifier
-
getI18NCaptionKey
java.lang.String getI18NCaptionKey()
Returns the internationalized caption of the enumeration value.- Returns:
- the localized caption if present, null otherwise
-
getImage
java.lang.String getImage()
Returns the image name for the enumeration value (if any).- Returns:
- the image name if present, null otherwise
-
-