public enum StorageLevelAlias extends Enum<StorageLevelAlias>
Enum Constant and Description |
---|
HDD
HDD Layer
|
MEM
Memory Layer
|
SSD
SSD Layer
|
Modifier and Type | Method and Description |
---|---|
int |
getValue()
Get value of the storage level alias
|
static StorageLevelAlias |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StorageLevelAlias[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StorageLevelAlias MEM
public static final StorageLevelAlias SSD
public static final StorageLevelAlias HDD
public static StorageLevelAlias[] values()
for (StorageLevelAlias c : StorageLevelAlias.values()) System.out.println(c);
public static StorageLevelAlias 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 nullpublic int getValue()
Copyright © 2015. All Rights Reserved.