Interface IMetaEnumValue
-
public interface IMetaEnumValueRepresents an enumeration value.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IMetaEnumerationgetEnumeration()Returns the corresponding enumeration.java.lang.StringgetI18NCaptionKey()Returns the internationalized caption of the enumeration value.java.lang.StringgetIdentifier()Returns the identifier of the enumeration value.java.lang.StringgetImage()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
-
-