public enum ApplicationServerSupportedOperations extends Enum<ApplicationServerSupportedOperations>
| 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 ApplicationServerSupportedOperations |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationServerSupportedOperations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationServerSupportedOperations RESTART
public static final ApplicationServerSupportedOperations SHUTDOWN
public static final ApplicationServerSupportedOperations START
public static ApplicationServerSupportedOperations[] values()
for (ApplicationServerSupportedOperations c : ApplicationServerSupportedOperations.values()) System.out.println(c);
public static ApplicationServerSupportedOperations 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-2014 Red Hat, Inc.. All Rights Reserved.