Package org.cyclos.impl.utils.cache
Class AccessorCacheValue
- java.lang.Object
-
- org.cyclos.impl.utils.cache.AccessorCacheValue
-
- All Implemented Interfaces:
Serializable,WrappedObject
- Direct Known Subclasses:
BeanAccessorCacheValue,BooleanPropertiesHolderCacheValue,CollectionAccessorCacheValue,EmbeddableAccessorCacheValue,EntityAccessorCacheValue,MapAccessorCacheValue,ScalarAccessorCacheValue
public abstract class AccessorCacheValue extends Object implements Serializable, WrappedObject
Value stored in cache for bothConfigurationAccessorandProductAccessor- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AccessorCacheValue()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AccessorCacheValuecreate(Object value)Creates anAccessorCacheValuefor the given valuestatic CollectionAccessorCacheValuecreate(Collection<?> collection)Creates aCollectionAccessorCacheValuefor the given mapstatic MapAccessorCacheValuecreate(Map<?,?> map)Creates aMapAccessorCacheValuefor the given map-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.cyclos.impl.utils.WrappedObject
unwrap
-
-
-
-
Method Detail
-
create
public static CollectionAccessorCacheValue create(Collection<?> collection)
Creates aCollectionAccessorCacheValuefor the given map
-
create
public static MapAccessorCacheValue create(Map<?,?> map)
Creates aMapAccessorCacheValuefor the given map
-
create
public static AccessorCacheValue create(Object value)
Creates anAccessorCacheValuefor the given value
-
-