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 SummaryEnum ConstantsEnum 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 SummaryModifier and TypeMethodDescriptionstatic EventingFunctionStatusReturns 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- 
UNDEPLOYEDThe function is not deployed.
- 
DEPLOYINGThe function is currently being deployed.
- 
DEPLOYEDThe function is deployed.
- 
UNDEPLOYINGThe function is currently being undeployed.
- 
PAUSEDThe function is paused.
- 
PAUSINGThe function is currently being paused.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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
 
 
-