public interface IEssEnum extends IEssBaseObject
| Modifier and Type | Method and Description |
|---|---|
IEssEnum |
fromInt(int intValue)
Gets the IEssEnum from the int value.
|
IEssEnum |
fromString(java.lang.String strValue)
Gets the IEssEnum from the String display value.
|
int |
getCountPossibleValues()
Gets the count of possible values of the enumeration.
|
java.lang.String[] |
getPossibleValues()
Gets the list of possible values of the enumeration.
|
int |
intValue()
Gets the int value of the IEssEnum.
|
java.lang.String |
stringValue()
Gets the String display value of the IEssEnum.
|
int intValue()
throws com.essbase.api.base.EssException
EssException - if an error occurs.java.lang.String stringValue()
throws com.essbase.api.base.EssException
EssException - if an error occurs.IEssEnum fromInt(int intValue) throws com.essbase.api.base.EssException
intValue - The int value.EssException - if an error occurs.IEssEnum fromString(java.lang.String strValue) throws com.essbase.api.base.EssException
strValue - The String display value.EssException - if an error occurs.int getCountPossibleValues()
throws com.essbase.api.base.EssException
EssException - if an error occurs.java.lang.String[] getPossibleValues()
throws com.essbase.api.base.EssException
EssException - if an error occurs.