public enum ProcessMode extends Enum<ProcessMode>
Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final ProcessMode enabled
public static final ProcessMode disabled
public static final ProcessMode diagnosticsonly
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 nameNullPointerException
- 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.Copyright © 2017. All rights reserved.