| Enum Constant and Description |
|---|
CONTROL |
LAYOUT |
MAPSPACE |
SOUND |
UPDATE |
VIDEO |
| Modifier and Type | Method and Description |
|---|---|
static Subsystem |
forName(java.lang.String name) |
java.lang.String |
getName() |
java.lang.String |
toString() |
static Subsystem |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Subsystem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Subsystem MAPSPACE
public static final Subsystem LAYOUT
public static final Subsystem VIDEO
public static final Subsystem CONTROL
public static final Subsystem SOUND
public static final Subsystem UPDATE
public static Subsystem[] values()
for (Subsystem c : Subsystem.values()) System.out.println(c);
public static Subsystem 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 nullpublic static Subsystem forName(java.lang.String name)
public java.lang.String toString()
toString in class java.lang.Enum<Subsystem>public java.lang.String getName()