public static enum ResourceType.Core extends java.lang.Enum<ResourceType.Core> implements ResourceType<SizedResourcePool>
ResourceType
s in Ehcache.ResourceType.Core
Enum Constant and Description |
---|
DISK
Disk: persistable,
serialization required. |
HEAP
Heap: not persistable,
serialization not required. |
OFFHEAP
OffHeap: not persistable,
serialization required. |
Modifier and Type | Method and Description |
---|---|
java.lang.Class<SizedResourcePool> |
getResourcePoolClass()
Gets the
ResourcePool type associated with this ResourceType . |
int |
getTierHeight()
Indicates the level this resource sits in the tiering system.
|
boolean |
isPersistable()
Indicates whether this
ResourceType supports persistence. |
boolean |
requiresSerialization()
Indicates whether this
ResourceType requires serialization
support. |
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()
ResourceType
ResourcePool
type associated with this ResourceType
.getResourcePoolClass
in interface ResourceType<SizedResourcePool>
ResourcePool
type associated with this typepublic boolean isPersistable()
ResourceType
ResourceType
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()
ResourceType
ResourceType
requires serialization
support.requiresSerialization
in interface ResourceType<SizedResourcePool>
true
if serializers are required, false
otherwisepublic int getTierHeight()
ResourceType
Higher 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>