Package com._1c.g5.v8.dt.lifecycle
Enum ServiceState
- java.lang.Object
- 
- java.lang.Enum<ServiceState>
- 
- com._1c.g5.v8.dt.lifecycle.ServiceState
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<ServiceState>
 
 public enum ServiceState extends Enum<ServiceState> Lifecycle service state.It is used for notification about the state in lifecycle listeners. - Since:
- 1.0.0
- See Also:
- IServiceContextLifecycleListener
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description BEFORE_STARTThe service is about to start.BEFORE_STOPThe service is about to stop.LINKEDThe linking phase is performed.STARTEDThe service is started.STOPPEDThe service is stopped.UNLINKEDThe unlinking phase is performed.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static ServiceStatevalueOf(String name)Returns the enum constant of this type with the specified name.static ServiceState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
LINKEDpublic static final ServiceState LINKED The linking phase is performed.- Since:
- 3.0.0
 
 - 
UNLINKEDpublic static final ServiceState UNLINKED The unlinking phase is performed.- Since:
- 3.0.0
 
 - 
BEFORE_STOPpublic static final ServiceState BEFORE_STOP The service is about to stop.- Since:
- 3.0.0
 
 - 
STOPPEDpublic static final ServiceState STOPPED The service is stopped.
 - 
BEFORE_STARTpublic static final ServiceState BEFORE_START The service is about to start.- Since:
- 3.0.0
 
 - 
STARTEDpublic static final ServiceState STARTED The service is started.
 
- 
 - 
Method Detail- 
valuespublic static ServiceState[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ServiceState c : ServiceState.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static ServiceState valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
- 
 
-