public final class Storage
extends java.lang.Object
Represents a temporary data storage for WebDocument
.
Constructor and Description |
---|
Storage() |
Modifier and Type | Method and Description |
---|---|
boolean |
containsKey(java.lang.String key)
Determines whether the storage contains an element with the specified key.
|
<TValue> TValue |
get(java.lang.String key)
Gets the data from the storage.
|
<TValue> void |
put(java.lang.String key,
TValue value)
Puts the value into the storage.
|
public final <TValue> void put(java.lang.String key, TValue value)
Puts the value into the storage.
key
- Key for the value.value
- Value.public final <TValue> TValue get(java.lang.String key)
Gets the data from the storage.
key
- Key of the value.public final boolean containsKey(java.lang.String key)
Determines whether the storage contains an element with the specified key.
key
- Key of the value.