public static enum ServiceController.Substate extends Enum<ServiceController.Substate>
ServiceController.States.  The list of possible
 substates may change over time, so users should not rely on its permanence.| Enum Constant and Description | 
|---|
| CANCELLEDCancelled controller installation due to duplicate or other problem. | 
| DOWNController is down. | 
| NEWNew controller being installed. | 
| PROBLEMController cannot start due to a problem with a dependency or transitive dependency. | 
| REMOVEDService has been removed. | 
| REMOVINGService is being removed. | 
| START_FAILEDStart failed. | 
| START_INITIATINGFirst phase of start processing. | 
| START_REQUESTEDA stopped controller has been requested to start. | 
| STARTINGSecond phase of start processing ( start()method invoked). | 
| STOP_REQUESTEDService is up but has been requested to stop. | 
| STOPPINGService is stopping. | 
| UPService is up. | 
| WAITINGController is waiting for an external condition to start, such as a dependent demand. | 
| WONT_STARTController is configured not to start. | 
| Modifier and Type | Method and Description | 
|---|---|
| ServiceController.State | getState()Get the state corresponding to this sub-state. | 
| boolean | in(ServiceController.Substate... substates)Determine if this substate is one of the given substates. | 
| boolean | isRestState()Determine whether this is a "rest" state. | 
| static ServiceController.Substate | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ServiceController.Substate[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ServiceController.Substate NEW
public static final ServiceController.Substate CANCELLED
public static final ServiceController.Substate DOWN
public static final ServiceController.Substate WAITING
public static final ServiceController.Substate WONT_START
public static final ServiceController.Substate PROBLEM
public static final ServiceController.Substate START_REQUESTED
public static final ServiceController.Substate START_INITIATING
public static final ServiceController.Substate STARTING
start() method invoked).public static final ServiceController.Substate START_FAILED
public static final ServiceController.Substate UP
public static final ServiceController.Substate STOP_REQUESTED
public static final ServiceController.Substate STOPPING
public static final ServiceController.Substate REMOVING
public static final ServiceController.Substate REMOVED
public static ServiceController.Substate[] values()
for (ServiceController.Substate c : ServiceController.Substate.values()) System.out.println(c);
public static ServiceController.Substate 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 boolean isRestState()
true if it is a rest state, false otherwisepublic ServiceController.State getState()
public boolean in(ServiceController.Substate... substates)
substates - the substates to checktrue if this substate is in the set; false otherwiseCopyright © 2018 JBoss by Red Hat. All rights reserved.