public static enum ResourceType.Core extends java.lang.Enum<ResourceType.Core> implements ResourceType<SizedResourcePool>
ResourceTypes in Ehcache.ResourceType.Core| Enum Constant and Description | 
|---|
| DISKDisk: persistable,  serializationrequired. | 
| HEAPHeap: not persistable,  serializationnot required. | 
| OFFHEAPOffHeap: not persistable,  serializationrequired. | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.Class<SizedResourcePool> | getResourcePoolClass()Gets the  ResourcePooltype associated with thisResourceType. | 
| int | getTierHeight()Indicates the level this resource sits in the tiering system. | 
| boolean | isPersistable()Indicates whether this  ResourceTypesupports persistence. | 
| boolean | requiresSerialization()Indicates whether this  ResourceTyperequiresserializationsupport. | 
| java.lang.String | toString() | 
| static ResourceType.Core | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static ResourceType.Core[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ResourceType.Core HEAP
serialization not required.public static final ResourceType.Core OFFHEAP
serialization required.public static final ResourceType.Core DISK
serialization required.public static ResourceType.Core[] values()
for (ResourceType.Core c : ResourceType.Core.values()) System.out.println(c);
public static ResourceType.Core valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.Class<SizedResourcePool> getResourcePoolClass()
ResourceTypeResourcePool type associated with this ResourceType.getResourcePoolClass in interface ResourceType<SizedResourcePool>ResourcePool type associated with this typepublic boolean isPersistable()
ResourceTypeResourceType supports persistence.
 
 Persistence in this context means that a ResourcePool of this ResourceType can be configured
 so that data stored in it will survive a JVM restart.
isPersistable in interface ResourceType<SizedResourcePool>true if it supports persistence, false otherwisepublic boolean requiresSerialization()
ResourceTypeResourceType requires serialization
 support.requiresSerialization in interface ResourceType<SizedResourcePool>true if serializers are required, false otherwisepublic int getTierHeight()
ResourceTypeHigher means resource is faster and less abundant, lower means resource is slower but potentially larger.
getTierHeight in interface ResourceType<SizedResourcePool>public java.lang.String toString()
toString in class java.lang.Enum<ResourceType.Core>