public static enum LocalProcess.Signal extends Enum<LocalProcess.Signal>
Enum Constant and Description |
---|
QUIT |
Modifier and Type | Method and Description |
---|---|
static LocalProcess.Signal |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LocalProcess.Signal[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LocalProcess.Signal QUIT
public static LocalProcess.Signal[] values()
for (LocalProcess.Signal c : LocalProcess.Signal.values()) System.out.println(c);
public static LocalProcess.Signal 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 nullCopyright © 2003–2018 Atlassian. All rights reserved.