public enum BucketHealthResult extends Enum<BucketHealthResult>
Enum Constant and Description |
---|
BYOK |
HEALTHY |
PERMISSION |
UNCLASSIFIED |
Modifier and Type | Method and Description |
---|---|
static BucketHealthResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BucketHealthResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BucketHealthResult BYOK
public static final BucketHealthResult PERMISSION
public static final BucketHealthResult UNCLASSIFIED
public static final BucketHealthResult HEALTHY
public static BucketHealthResult[] values()
for (BucketHealthResult c : BucketHealthResult.values()) System.out.println(c);
public static BucketHealthResult 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 null