Package com._1c.g5.v8.dt.lifecycle
Enum Class ServiceState
- All Implemented Interfaces:
Serializable
,Comparable<ServiceState>
,Constable
Lifecycle service state.
It is used for notification about the state in lifecycle listeners.
- Since:
- 1.0.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe service is about to start.The service is about to stop.The linking phase is performed.The service is started.The service is stopped.The unlinking phase is performed. -
Method Summary
Modifier and TypeMethodDescriptionstatic ServiceState
Returns the enum constant of this class with the specified name.static ServiceState[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LINKED
The linking phase is performed.- Since:
- 3.0.0
-
UNLINKED
The unlinking phase is performed.- Since:
- 3.0.0
-
BEFORE_STOP
The service is about to stop.- Since:
- 3.0.0
-
STOPPED
The service is stopped. -
BEFORE_START
The service is about to start.- Since:
- 3.0.0
-
STARTED
The service is started.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-