public enum ClusterStatus extends Enum<ClusterStatus>
| Enum Constant and Description |
|---|
CREATING |
DELETING |
FAILED |
NOT_EXISTS |
ORPHANED |
RUNNING |
| Modifier and Type | Method and Description |
|---|---|
static ClusterStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClusterStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClusterStatus CREATING
public static final ClusterStatus RUNNING
public static final ClusterStatus FAILED
public static final ClusterStatus DELETING
public static final ClusterStatus NOT_EXISTS
public static final ClusterStatus ORPHANED
public static ClusterStatus[] values()
for (ClusterStatus c : ClusterStatus.values()) System.out.println(c);
public static ClusterStatus 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 nullCopyright © 2018 Cask Data, Inc. Licensed under the Apache License, Version 2.0.