public enum EventingFunctionDeploymentStatus extends Enum<EventingFunctionDeploymentStatus>
| Enum Constant and Description |
|---|
DEPLOYED
The function is currently deployed.
|
UNDEPLOYED
The function is currently undeployed.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isDeployed()
Returns true if the function is currently deployed.
|
static EventingFunctionDeploymentStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventingFunctionDeploymentStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventingFunctionDeploymentStatus DEPLOYED
public static final EventingFunctionDeploymentStatus UNDEPLOYED
public static EventingFunctionDeploymentStatus[] values()
for (EventingFunctionDeploymentStatus c : EventingFunctionDeploymentStatus.values()) System.out.println(c);
public static EventingFunctionDeploymentStatus 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 isDeployed()
Copyright © 2024 Couchbase, Inc.. All rights reserved.