public enum JBossASServerSupportedOperations extends Enum<JBossASServerSupportedOperations>
| Enum Constant and Description |
|---|
RESTART
Performs a sequential Shutdown and Start.
|
SHUTDOWN
Shuts down an AS instance via a JMX call or shutdown script, depending on plug-in configuration
|
START
Starts an AS instance by calling a configurable start script.
|
| Modifier and Type | Method and Description |
|---|---|
static JBossASServerSupportedOperations |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JBossASServerSupportedOperations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JBossASServerSupportedOperations RESTART
public static final JBossASServerSupportedOperations SHUTDOWN
public static final JBossASServerSupportedOperations START
public static JBossASServerSupportedOperations[] values()
for (JBossASServerSupportedOperations c : JBossASServerSupportedOperations.values()) System.out.println(c);
public static JBossASServerSupportedOperations 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 © 2008-2013 Red Hat, Inc.. All Rights Reserved.