Enum EventingFunctionStatus
java.lang.Object
java.lang.Enum<EventingFunctionStatus>
com.couchbase.client.java.manager.eventing.EventingFunctionStatus
- All Implemented Interfaces:
Serializable
,Comparable<EventingFunctionStatus>
The compound status an eventing function can be in at any given point in time.
-
Enum Constant Summary
Enum ConstantDescriptionThe function is deployed.The function is currently being deployed.The function is paused.The function is currently being paused.The function is not deployed.The function is currently being undeployed. -
Method Summary
Modifier and TypeMethodDescriptionstatic EventingFunctionStatus
Returns the enum constant of this type with the specified name.static EventingFunctionStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
UNDEPLOYED
The function is not deployed. -
DEPLOYING
The function is currently being deployed. -
DEPLOYED
The function is deployed. -
UNDEPLOYING
The function is currently being undeployed. -
PAUSED
The function is paused. -
PAUSING
The function is currently being paused.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 nameNullPointerException
- if the argument is null
-