public enum MemoryModuleState extends Enum<MemoryModuleState>
| Enum Constant and Description |
|---|
REGISTERED |
VALUE_ABSENT |
VALUE_PRESENT |
| Modifier and Type | Method and Description |
|---|---|
static MemoryModuleState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MemoryModuleState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MemoryModuleState VALUE_PRESENT
public static final MemoryModuleState VALUE_ABSENT
public static final MemoryModuleState REGISTERED
public static MemoryModuleState[] values()
for (MemoryModuleState c : MemoryModuleState.values()) System.out.println(c);
public static MemoryModuleState 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 null