|
Oracle® Fusion Middleware Java API Reference for Oracle Coherence 12c (12.1.3.0.0) E47890-01 |
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Object
com.oracle.common.collections.ConverterCollections
com.tangosol.util.ConverterCollections
public abstract class ConverterCollections
A collection of Collection implementation classes that use the Converter interface to convert the items stored in underlying collection objects.
| Nested Class Summary | |
|---|---|
static class |
ConverterCollections.ConverterCacheEntryA ConfigurableCacheMap.Entry that lazily converts the key and value. |
static class |
ConverterCollections.ConverterCacheEventA Converter CacheEvent views an underlying CacheEvent through a set of key and value Converters. |
static class |
ConverterCollections.ConverterCacheMapA Converter CacheMap views an underlying CacheMap through a set of key and value Converters. |
static class |
ConverterCollections.ConverterCollectionDeprecated. As of Coherence 12.1.2, replaced by ConverterCollections.ConverterCollection |
static class |
ConverterCollections.ConverterConcurrentMapA Converter ConcurrentMap views an underlying ConcurrentMap through a set of key and value Converters. |
static class |
ConverterCollections.ConverterEntryDeprecated. As of Coherence 12.1.2, replaced by ConverterCollections.ConverterEntry |
static class |
ConverterCollections.ConverterEntrySetDeprecated. As of Coherence 12.1.2, replaced by ConverterCollections.ConverterEntrySet |
static class |
ConverterCollections.ConverterInvocableMapA Converter InvocableMap views an underlying InvocableMap through a set of key and value Converters. |
static class |
ConverterCollections.ConverterListDeprecated. As of Coherence 12.1.2, replaced by ConverterCollections.ConverterList |
static class |
ConverterCollections.ConverterListIteratorDeprecated. As of Coherence 12.1.2, replaced by ConverterCollections.ConverterListIterator |
static class |
ConverterCollections.ConverterMapDeprecated. As of Coherence 12.1.2, replaced by ConverterCollections.ConverterMap |
static class |
ConverterCollections.ConverterMapEventA ConverterMapEvent views an underlying MapEvent through a set of key and value Converters. |
static class |
ConverterCollections.ConverterMapListenerA converter MapListener that converts events of the underlying MapListener for the underlying map. |
static class |
ConverterCollections.ConverterNamedCacheA Converter NamedCache views an underlying NamedCache through a set of key and value Converters. |
static class |
ConverterCollections.ConverterObservableMapA Converter ObservableMap views an underlying ObservableMap through a set of key and value Converters. |
static class |
ConverterCollections.ConverterQueryMapA Converter QueryMap views an underlying QueryMap through a set of key and value Converters. |
static class |
ConverterCollections.ConverterSetDeprecated. As of Coherence 12.1.2, replaced by ConverterCollections.ConverterSet |
static class |
ConverterCollections.ConverterSortedMapDeprecated. As of Coherence 12.1.2, replaced by ConverterCollections.ConverterSortedMap |
static class |
ConverterCollections.ConverterSortedSetDeprecated. As of Coherence 12.1.2, replaced by ConverterCollections.ConverterSortedSet |
| Nested classes/interfaces inherited from class com.oracle.common.collections.ConverterCollections |
|---|
com.oracle.common.collections.ConverterCollections.AbstractConverterEntry, com.oracle.common.collections.ConverterCollections.ConverterComparator, com.oracle.common.collections.ConverterCollections.ConverterEnumerator |
| Constructor Summary | |
|---|---|
ConverterCollections() |
|
| Method Summary | |
|---|---|
static java.lang.Object[] |
convertArray(java.lang.Object[] ao, Converter conv)Convert the contents of the passed array. |
static java.lang.Object[] |
convertArray(java.lang.Object[] aoSrc, Converter conv, java.lang.Object[] aoDest)Convert the contents of the passed source array into an array with the component type of the passed destination array, using the destination array itself if it is large enough, and placing a null in the first unused element of the destination array if it is larger than the source array. |
static ConverterCollections.ConverterCacheMap |
getCacheMap(CacheMap map, Converter convKeyUp, Converter convKeyDown, Converter convValUp, Converter convValDown)Returns a Converter instance of CacheMap. |
static ConverterCollections.ConverterConcurrentMap |
getConcurrentMap(ConcurrentMap map, Converter convKeyUp, Converter convKeyDown, Converter convValUp, Converter convValDown)Returns a Converter instance of ConcurrentMap. |
static ConverterCollections.ConverterInvocableMap |
getInvocableMap(InvocableMap map, Converter convKeyUp, Converter convKeyDown, Converter convValUp, Converter convValDown)Returns a Converter instance of InvocableMap. |
static MapEvent |
getMapEvent(ObservableMap map, MapEvent event, Converter convKey, Converter convVal)Returns an instance of a MapEvent that uses Converters to retrieve the event's data. |
static MapEvent |
getMapEvent(ObservableMap map, MapEvent event, Converter convKey, Converter convVal, BackingMapManagerContext context)Returns an instance of a MapEvent that uses Converters to retrieve the event's data, and additionally provides access to the BackingMapManagerContext. |
static ConverterCollections.ConverterNamedCache |
getNamedCache(NamedCache cache, Converter convKeyUp, Converter convKeyDown, Converter convValUp, Converter convValDown)Returns a Converter instance of NamedCache. |
static ConverterCollections.ConverterObservableMap |
getObservableMap(ObservableMap map, Converter convKeyUp, Converter convKeyDown, Converter convValUp, Converter convValDown)Returns a Converter instance of ObservableMap. |
static ConverterCollections.ConverterQueryMap |
getQueryMap(QueryMap map, Converter convKeyUp, Converter convKeyDown, Converter convValUp, Converter convValDown)Returns a Converter instance of QueryMap. |
| Methods inherited from class com.oracle.common.collections.ConverterCollections |
|---|
convertArray, convertArray, getCollection, getEntry, getEntrySet, getIterator, getList, getListIterator, getMap, getSet, getSortedMap, getSortedSet |
| Constructor Detail |
|---|
public ConverterCollections()
| Method Detail |
|---|
public static ConverterCollections.ConverterConcurrentMap getConcurrentMap(ConcurrentMap map,
Converter convKeyUp,
Converter convKeyDown,
Converter convValUp,
Converter convValDown)
map - the underlying ConcurrentMapconvKeyUp - the Converter to view the underlying ConcurrentMap's keys throughconvKeyDown - the Converter to use to pass keys down to the underlying ConcurrentMapconvValUp - the Converter to view the underlying ConcurrentMap's values throughconvValDown - the Converter to use to pass values down to the underlying ConcurrentMap
public static ConverterCollections.ConverterInvocableMap getInvocableMap(InvocableMap map,
Converter convKeyUp,
Converter convKeyDown,
Converter convValUp,
Converter convValDown)
map - the underlying InvocableMapconvKeyUp - the Converter to view the underlying InvocableMap's keys throughconvKeyDown - the Converter to use to pass keys down to the underlying InvocableMapconvValUp - the Converter to view the underlying InvocableMap's values throughconvValDown - the Converter to use to pass values down to the underlying InvocableMap
public static ConverterCollections.ConverterObservableMap getObservableMap(ObservableMap map,
Converter convKeyUp,
Converter convKeyDown,
Converter convValUp,
Converter convValDown)
map - the underlying ObservableMapconvKeyUp - the Converter to view the underlying ObservableMap's keys throughconvKeyDown - the Converter to use to pass keys down to the underlying ObservableMapconvValUp - the Converter to view the underlying ObservableMap's values throughconvValDown - the Converter to use to pass values down to the underlying ObservableMap
public static ConverterCollections.ConverterQueryMap getQueryMap(QueryMap map,
Converter convKeyUp,
Converter convKeyDown,
Converter convValUp,
Converter convValDown)
map - the underlying QueryMapconvKeyUp - the Converter to view the underlying QueryMap's keys throughconvKeyDown - the Converter to use to pass keys down to the underlying QueryMapconvValUp - the Converter to view the underlying QueryMap's values throughconvValDown - the Converter to use to pass values down to the underlying QueryMap
public static ConverterCollections.ConverterCacheMap getCacheMap(CacheMap map,
Converter convKeyUp,
Converter convKeyDown,
Converter convValUp,
Converter convValDown)
map - the underlying CacheMapconvKeyUp - the Converter to view the underlying CacheMap's keys throughconvKeyDown - the Converter to use to pass keys down to the underlying CacheMapconvValUp - the Converter to view the underlying CacheMap's values throughconvValDown - the Converter to use to pass values down to the underlying CacheMap
public static ConverterCollections.ConverterNamedCache getNamedCache(NamedCache cache,
Converter convKeyUp,
Converter convKeyDown,
Converter convValUp,
Converter convValDown)
cache - the underlying NamedCacheconvKeyUp - the Converter to view the underlying NamedCache's keys throughconvKeyDown - the Converter to use to pass keys down to the underlying NamedCacheconvValUp - the Converter to view the underlying NamedCache's values throughconvValDown - the Converter to use to pass values down to the underlying NamedCache
public static MapEvent getMapEvent(ObservableMap map,
MapEvent event,
Converter convKey,
Converter convVal)
map - the new event's sourceevent - the underlying MapEventconvKey - the Converter to view the underlying MapEvent's keyconvVal - the Converter to view the underlying MapEvent's values
public static MapEvent getMapEvent(ObservableMap map,
MapEvent event,
Converter convKey,
Converter convVal,
BackingMapManagerContext context)
map - the new event's sourceevent - the underlying MapEventconvKey - the Converter to view the underlying MapEvent's keyconvVal - the Converter to view the underlying MapEvent's valuescontext - the BackingMapManagerContext used to deserialize the underlying values
public static java.lang.Object[] convertArray(java.lang.Object[] ao,
Converter conv)
This helper method is intended to support the functionality of Collection.toArray.
ao - an array of Objects to convertconv - the Converter to use to convert the objects
public static java.lang.Object[] convertArray(java.lang.Object[] aoSrc,
Converter conv,
java.lang.Object[] aoDest)
This helper method is intended to support the functionality of Collection.toArray.
aoSrc - an array of Objects to convertconv - the Converter to use to convert the objectsaoDest - the array to use to place the converted objects in if large enough, otherwise the array from which to obtain the component type to create a new array that is large enough
|
Oracle® Fusion Middleware Java API Reference for Oracle Coherence 12c (12.1.3.0.0) E47890-01 |
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||