public static enum ManagedProcess.StopPriority extends Enum<ManagedProcess.StopPriority>
| Enum Constant and Description |
|---|
KILL_9 |
QUIESCE_AND_STOP |
| Modifier and Type | Method and Description |
|---|---|
static ManagedProcess.StopPriority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ManagedProcess.StopPriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ManagedProcess.StopPriority KILL_9
public static final ManagedProcess.StopPriority QUIESCE_AND_STOP
public static ManagedProcess.StopPriority[] values()
for (ManagedProcess.StopPriority c : ManagedProcess.StopPriority.values()) System.out.println(c);
public static ManagedProcess.StopPriority 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 © 2012–2015 The Apache Software Foundation. All rights reserved.