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