public enum StorageMethod extends Enum<StorageMethod>
| Enum Constant and Description | 
|---|
HEAP
Heap memory 
 | 
TRANSACTIONAL_MEMORY
Transactional memory 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static StorageMethod | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static StorageMethod[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final StorageMethod HEAP
public static final StorageMethod TRANSACTIONAL_MEMORY
public static StorageMethod[] values()
for (StorageMethod c : StorageMethod.values()) System.out.println(c);
public static StorageMethod valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015–2019 Cloud Software Group, Inc.. All rights reserved.