Package com.streambase.sb.operator
Enum StorageMethod
- java.lang.Object
-
- java.lang.Enum<StorageMethod>
-
- com.streambase.sb.operator.StorageMethod
-
- All Implemented Interfaces:
Serializable
,Comparable<StorageMethod>
public enum StorageMethod extends Enum<StorageMethod>
Data storage method- Since:
- 10.2
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HEAP
Heap memoryTRANSACTIONAL_MEMORY
Transactional memory
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
HEAP
public static final StorageMethod HEAP
Heap memory
-
TRANSACTIONAL_MEMORY
public static final StorageMethod TRANSACTIONAL_MEMORY
Transactional memory
-
-
Method Detail
-
values
public static StorageMethod[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StorageMethod c : StorageMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StorageMethod valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-