public interface IEssValueAny extends IEssBaseObject
Modifier and Type | Interface and Description |
---|---|
static class |
IEssValueAny.EEssDataType
The EEssDataType class is an enumeration of data types.
|
Modifier and Type | Method and Description |
---|---|
boolean |
getBoolean()
Gets the boolean value.
|
IEssValueAny.EEssDataType |
getDataType()
Gets the data type of the value.
|
java.util.Date |
getDate()
Gets the Date value.
|
double |
getDouble()
Gets the double value.
|
IEssEnum |
getEssEnum()
Gets the IEssEnum value.
|
float |
getFloat()
Gets the float value.
|
int |
getInt()
Gets the int value.
|
long |
getLong()
Gets the long value.
|
java.lang.Object |
getObject()
Gets the Object value.
|
short |
getShort()
Gets the short value.
|
java.lang.String |
getString()
Gets the String value.
|
java.lang.String[] |
getStringArr()
Gets the String[] value.
|
java.lang.String[] |
getValueAndKey()
Gets the member name and its unique key combination.
|
java.util.Vector |
getVector()
Gets the Vector value.
|
void |
setBoolean(boolean value)
Sets the boolean value.
|
void |
setDate(java.util.Date value)
Sets the Date value.
|
void |
setDouble(double value)
Sets the double value.
|
void |
setEssEnum(IEssEnum value)
Sets the IEssEnum value.
|
void |
setFloat(float value)
Sets the float value.
|
void |
setInt(int value)
Sets the int value.
|
void |
setLong(long value)
Sets the long value.
|
void |
setObject(java.lang.Object value)
Sets the Object value.
|
void |
setShort(short value)
Sets the short value.
|
void |
setString(java.lang.String value)
Sets the String value.
|
void |
setStringArr(java.lang.String[] value)
Sets the String[] value.
|
void |
setValueAndKey(java.lang.String memberName,
java.lang.String key)
Sets the member name and its unique key
|
void |
setVector(java.util.Vector value)
Sets the Vector value.
|
IEssValueAny.EEssDataType getDataType() throws com.essbase.api.base.EssException
EssException
- if an error occurs.boolean getBoolean() throws com.essbase.api.base.EssException
EssException
- if an error occurs.void setBoolean(boolean value) throws com.essbase.api.base.EssException
value
- The boolean value.EssException
- if an error occurs.java.lang.String getString() throws com.essbase.api.base.EssException
EssException
- if an error occurs.void setString(java.lang.String value) throws com.essbase.api.base.EssException
value
- The String value.EssException
- if an error occurs.int getInt() throws com.essbase.api.base.EssException
EssException
- if an error occurs.void setInt(int value) throws com.essbase.api.base.EssException
value
- The int value.EssException
- if an error occurs.long getLong() throws com.essbase.api.base.EssException
EssException
- if an error occurs.void setLong(long value) throws com.essbase.api.base.EssException
value
- The long value.EssException
- if an error occurs.short getShort() throws com.essbase.api.base.EssException
EssException
- if an error occurs.void setShort(short value) throws com.essbase.api.base.EssException
value
- The short value.EssException
- if an error occurs.double getDouble() throws com.essbase.api.base.EssException
EssException
- if an error occurs.void setDouble(double value) throws com.essbase.api.base.EssException
value
- The double value.EssException
- if an error occurs.void setValueAndKey(java.lang.String memberName, java.lang.String key) throws com.essbase.api.base.EssException
memberName
- the member namekey
- the unique keyEssException
- if an error occurs.float getFloat() throws com.essbase.api.base.EssException
EssException
- if an error occurs.void setFloat(float value) throws com.essbase.api.base.EssException
value
- The float value.EssException
- if an error occurs.IEssEnum getEssEnum() throws com.essbase.api.base.EssException
EssException
- if an error occurs.java.lang.String[] getValueAndKey() throws com.essbase.api.base.EssException
EssException
- if an error occurs.void setEssEnum(IEssEnum value) throws com.essbase.api.base.EssException
value
- The IEssEnum value.EssException
- if an error occurs.java.lang.Object getObject() throws com.essbase.api.base.EssException
EssException
- if an error occurs.void setObject(java.lang.Object value) throws com.essbase.api.base.EssException
value
- The Object value.EssException
- if an error occurs.java.util.Vector getVector() throws com.essbase.api.base.EssException
EssException
- if an error occurs.void setVector(java.util.Vector value) throws com.essbase.api.base.EssException
value
- The Vector value.EssException
- if an error occurs.java.util.Date getDate() throws com.essbase.api.base.EssException
EssException
- if an error occurs.void setDate(java.util.Date value) throws com.essbase.api.base.EssException
value
- The Date value.EssException
- if an error occurs.java.lang.String[] getStringArr() throws com.essbase.api.base.EssException
EssException
- if an error occurs.void setStringArr(java.lang.String[] value) throws com.essbase.api.base.EssException
value
- The String[] value.EssException
- if an error occurs.