public static enum ResourceType.Core extends java.lang.Enum<ResourceType.Core> implements ResourceType<SizedResourcePool>
ResourceType.Core| Enum Constant and Description |
|---|
DISK
Disk resource.
|
HEAP
Heap resource.
|
OFFHEAP
OffHeap resource.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.Class<SizedResourcePool> |
getResourcePoolClass()
Gets the primary
ResourcePool type associated with this ResourceType. |
boolean |
isPersistable()
Whether the resource supports persistence.
|
boolean |
requiresSerialization()
Whether the resource 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
public static final ResourceType.Core OFFHEAP
public static final ResourceType.Core DISK
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()
ResourceTypeisPersistable in interface ResourceType<SizedResourcePool>true if it supports persistencepublic boolean requiresSerialization()
ResourceTyperequiresSerialization in interface ResourceType<SizedResourcePool>true if serializers are requiredpublic java.lang.String toString()
toString in class java.lang.Enum<ResourceType.Core>