|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ProcessMode>
de.interactive_instruments.ShapeChange.ProcessMode
public enum ProcessMode
Enumeration of the execution modes available for ShapeChange processes.
Enum Constant Summary | |
---|---|
diagnosticsonly
Signifies that the process shall only be run for diagnostic purpose. |
|
disabled
Signifies that the process shall not be executed. |
|
enabled
Signifies that the process shall be executed. |
Method Summary | |
---|---|
static ProcessMode |
fromString(String mode)
Parses the given string to identify if it represents one of the declared process modes. |
static ProcessMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ProcessMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ProcessMode enabled
public static final ProcessMode disabled
public static final ProcessMode diagnosticsonly
Method Detail |
---|
public static ProcessMode[] values()
for (ProcessMode c : ProcessMode.values()) System.out.println(c);
public static ProcessMode valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic static ProcessMode fromString(String mode)
mode
- String to check if it is one of the modes represented by this enumeration.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |