public interface PersistentMap
extends java.io.Externalizable
| Modifier and Type | Method and Description |
|---|---|
boolean |
containsKey(java.lang.String key)
Returns true if this map contains a mapping for the specified key
|
boolean |
getBoolean(java.lang.String key)
Returns the boolean value for the specified key.
|
double |
getDouble(java.lang.String key)
Returns the double value for the specified key.
|
int |
getInt(java.lang.String key)
Returns the int value for the specified key.
|
long |
getLong(java.lang.String key)
Returns the long value for the specified key.
|
java.lang.String |
getString(java.lang.String key)
Returns the String value for the specified key.
|
void |
setBoolean(java.lang.String key,
boolean value)
Associates the specified boolean value with the specified key in this map.
|
void |
setDouble(java.lang.String key,
double value)
Associates the specified double value with the specified key in this map.
|
void |
setInt(java.lang.String key,
int value)
Associates the specified int value with the specified key in this map.
|
void |
setLong(java.lang.String key,
long value)
Associates the specified long value with the specified key in this map.
|
void |
setString(java.lang.String key,
java.lang.String value)
Associates the specified String value with the specified key in this map.
|
boolean containsKey(java.lang.String key)
key - boolean getBoolean(java.lang.String key)
throws BatchContainerPersistentContextException
key - BatchContainerPersistentContextExceptionvoid setBoolean(java.lang.String key,
boolean value)
key - boolean - valuedouble getDouble(java.lang.String key)
throws BatchContainerPersistentContextException
key - BatchContainerPersistentContextExceptionvoid setDouble(java.lang.String key,
double value)
key - double - valueint getInt(java.lang.String key)
throws BatchContainerPersistentContextException
key - BatchContainerPersistentContextExceptionvoid setInt(java.lang.String key,
int value)
key - int - valuelong getLong(java.lang.String key)
throws BatchContainerPersistentContextException
key - BatchContainerPersistentContextExceptionvoid setLong(java.lang.String key,
long value)
key - long - valuejava.lang.String getString(java.lang.String key)
throws BatchContainerPersistentContextException
key - BatchContainerPersistentContextExceptionvoid setString(java.lang.String key,
java.lang.String value)
key - String - value