| |
|
| java.lang.Object com.sun.jump.module.contentstore.JUMPData
JUMPData | public class JUMPData (Code) | | JUMPData encapsulates the value stored in the persistant store.
This class consists of the type of the value and the actual value.
|
FORMAT_BOOLEAN | final public static int FORMAT_BOOLEAN(Code) | | |
FORMAT_BYTES | final public static int FORMAT_BYTES(Code) | | |
FORMAT_FLOAT | final public static int FORMAT_FLOAT(Code) | | |
FORMAT_INT | final public static int FORMAT_INT(Code) | | |
FORMAT_SERIALIZABLE | final public static int FORMAT_SERIALIZABLE(Code) | | |
FORMAT_STRING | final public static int FORMAT_STRING(Code) | | |
FORMAT_UNKNOWN | final public static int FORMAT_UNKNOWN(Code) | | |
format | protected int format(Code) | | |
JUMPData | public JUMPData()(Code) | | Creates a new instance of JUMPData
|
JUMPData | public JUMPData(int value)(Code) | | |
JUMPData | public JUMPData(float value)(Code) | | |
JUMPData | public JUMPData(boolean value)(Code) | | |
JUMPData | public JUMPData(byte[] value)(Code) | | |
equals | public boolean equals(Object obj)(Code) | | Tells whether or not this JUMPData is equal to another object.
Two JUMPDatas are equal if the data format is the same and the value
is equals to one another.
|
getBooleanValue | public boolean getBooleanValue()(Code) | | |
getBytesValue | public byte[] getBytesValue()(Code) | | |
getFloatValue | public float getFloatValue()(Code) | | |
getFormat | public int getFormat()(Code) | | |
getIntValue | public int getIntValue()(Code) | | |
getValue | public Object getValue()(Code) | | Returns the value of this JUMPData as an Object.
|
toString | public String toString()(Code) | | Returns the String summerizing the content of this JUMPData.
|
|
|
|