| Package | Description | 
|---|---|
| com.tangosol.coherence.rest.util | |
| com.tangosol.util | 
 Contains various generic utilities. 
 | 
| com.tangosol.util.processor | 
 Contains concrete  
InvocableMap.EntryProcessor
implementations. | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
JsonMap
A simple wrapper around  
LiteMap that preserves the order of elements
 and adds support for POF serialization without fidelity loss in order to
 support JSON pass-through. | 
| Modifier and Type | Method and Description | 
|---|---|
static <K,V extends Versionable> | 
Processors.versionedPut(V oValue)
Construct a versioned put processor that updates an entry with
 a new value if and only if the version of the new value matches
 to the version of the current entry's value (which must exist). 
 | 
static <K,V extends Versionable> | 
Processors.versionedPut(V oValue,
            boolean fAllowInsert,
            boolean fReturn)
Construct a versioned put processor that updates an entry with
 a new value if and only if the version of the new value matches
 to the version of the current entry's value. 
 | 
static <K,V extends Versionable> | 
Processors.versionedPutAll(Map<? extends K,? extends V> map)
Construct a versioned putAll processor that updates an entry with
 a new value if and only if the version of the new value matches
 to the version of the current entry's value (which must exist). 
 | 
static <K,V extends Versionable> | 
Processors.versionedPutAll(Map<? extends K,? extends V> map,
               boolean fAllowInsert,
               boolean fReturn)
Construct a versioned putAll processor that updates an entry with a new
 value if and only if the version of the new value matches to the
 version of the current entry's value (which must exist). 
 | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
VersionedPut<K,V extends Versionable>
VersionedPut is an EntryProcessor that assumes that entry values implement
  
Versionable interface and performs an
 Entry.setValue operation if and only if the version of the specified value
 matches to the version of the current value. | 
class  | 
VersionedPutAll<K,V extends Versionable>
VersionedPutAll is an EntryProcessor that assumes that entry values
 implement  
Versionable interface and performs an
 Entry.setValue operation only for entries whose versions match to versions
 of the corresponding current values. | 
| Modifier and Type | Field and Description | 
|---|---|
protected V | 
VersionedPut.m_oValue
Specifies the new value to update an entry with. 
 |