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