Package | Description |
---|---|
com.tangosol.coherence.dslquery.internal | |
com.tangosol.coherence.rest.util | |
com.tangosol.coherence.rest.util.updater | |
com.tangosol.net.cache |
Contains classes providing various caching strategies.
|
com.tangosol.util |
Contains various generic utilities.
|
com.tangosol.util.extractor |
Contains
ValueExtractor and
ValueUpdater related classes. |
com.tangosol.util.processor |
Contains concrete
InvocableMap.EntryProcessor
implementations. |
Modifier and Type | Method and Description |
---|---|
ValueUpdater |
UpdateSetListMaker.makeValueUpdater(Object oValue)
Make a ValueUpdater out of the given Object.
|
ValueUpdater |
PropertyBuilder.updaterFor(String sName)
Make a ValueUpdater for the given String.
|
ValueUpdater |
PropertyBuilder.updaterFor(String[] asProps)
Make a ValueUpdater for the given array of property Strings.
|
Modifier and Type | Field and Description |
---|---|
protected ValueUpdater |
MvelManipulator.m_updater
The underlying ValueUpdater.
|
Modifier and Type | Method and Description |
---|---|
ValueUpdater |
MvelManipulator.getUpdater()
Retrieve the underlying ValueUpdater reference.
|
Modifier and Type | Class and Description |
---|---|
class |
MvelUpdater
MVEL-based ValueUpdater implementation.
|
Modifier and Type | Method and Description |
---|---|
void |
BackingMapBinaryEntry.update(ValueUpdater updater,
Object oValue)
Update the Entry's value.
|
Modifier and Type | Method and Description |
---|---|
ValueUpdater<T,V> |
ValueManipulator.getUpdater()
Retrieve the underlying ValueUpdater reference.
|
Modifier and Type | Method and Description |
---|---|
static <K,V,T> InvocableMap.EntryProcessor<K,V,Boolean> |
Processors.update(ValueUpdater<V,T> updater,
T value)
Construct an update processor based on the specified
ValueUpdater . |
<T> void |
InvocableMap.Entry.update(ValueUpdater<V,T> updater,
T value)
Update the Entry's value.
|
<U> void |
SimpleMapEntry.update(ValueUpdater<V,U> updater,
U value)
Update the Entry's value.
|
void |
ConverterCollections.ConverterMapEvent.ConverterMapEventBinaryEntry.update(ValueUpdater updater,
Object oValue)
Update the Entry's value.
|
void |
InvocableMapHelper.RoutingMapTriggerEntry.update(ValueUpdater updater,
Object oValue) |
static <K,V,U> void |
InvocableMapHelper.updateEntry(ValueUpdater<V,U> updater,
Map.Entry<K,V> entry,
U oValue)
Update the specified entry using the specified updater and value.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractUpdater<K,V,U>
Abstract base for ValueUpdater implementations.
|
class |
CompositeUpdater
A ValueUpdater implementation based on an extractor-updater pair that could
also be used as a ValueManipulator.
|
class |
PofUpdater
POF-based ValueUpdater implementation.
|
class |
ReflectionUpdater
Reflection-based ValueUpdater implementation.
|
class |
UniversalUpdater
Universal ValueUpdater implementation.
|
Modifier and Type | Field and Description |
---|---|
protected ValueUpdater |
CompositeUpdater.m_updater
The ValueUpdater part.
|
Modifier and Type | Method and Description |
---|---|
static ValueUpdater |
UniversalUpdater.createUpdater(String sNames)
Return a
ValueUpdater for sNames |
ValueUpdater |
CompositeUpdater.getUpdater()
Retrieve the ValueUpdater part.
|
Constructor and Description |
---|
CompositeUpdater(ValueExtractor extractor,
ValueUpdater updater)
Construct a CompositeUpdater based on the specified extractor and
updater.
|
Modifier and Type | Field and Description |
---|---|
protected ValueUpdater<V,T> |
UpdaterProcessor.m_updater
The underlying ValueUpdater.
|
protected ValueUpdater<V,R> |
PropertyManipulator.m_updater
The underlying ValueUpdater.
|
Modifier and Type | Method and Description |
---|---|
ValueUpdater<V,R> |
PropertyManipulator.getUpdater()
Retrieve the underlying ValueUpdater reference.
|
Constructor and Description |
---|
UpdaterProcessor(ValueUpdater<V,T> updater,
T value)
Construct an UpdaterProcessor based on the specified ValueUpdater.
|