Uses of Class
org.infinispan.util.CollectionMapper
-
Packages that use CollectionMapper Package Description org.infinispan.util General utilities that are not specific to Infinispan, including string parsing helpers, reflection tools and collections and containers designed to supplement the JDK-provided containers. -
-
Uses of CollectionMapper in org.infinispan.util
Subclasses of CollectionMapper in org.infinispan.util Modifier and Type Class Description class
CacheCollectionMapper<E,R>
Deprecated.since 9.2.1 It is recommended to useWriteableCacheCollectionMapper
instead as it allows for constant time contains and other operationsclass
CacheSetMapper<E,R>
ACacheSet
that allows for a different set to be mapped as a different instance wtih values replaced on request.class
SetMapper<E,R>
A set that maps another one to a new one of a possibly different type.class
WriteableCacheCollectionMapper<E,R>
A writeable cache collection mapper that also has constant time operations for things such asCollection.contains(Object)
if the underlying Collection does.class
WriteableCacheSetMapper<E,R>
A writeable cache set mapper that also has constant time operations for things such asCollection.contains(Object)
if the underlying Set does.
-