public static enum ShardStats.State extends java.lang.Enum<ShardStats.State>
Enum Constant and Description |
---|
FULL |
HALF_FULL |
OK |
SPLIT_NEEDED |
Modifier and Type | Method and Description |
---|---|
static ShardStats.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ShardStats.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShardStats.State OK
public static final ShardStats.State HALF_FULL
public static final ShardStats.State FULL
public static final ShardStats.State SPLIT_NEEDED
public static ShardStats.State[] values()
for (ShardStats.State c : ShardStats.State.values()) System.out.println(c);
public static ShardStats.State valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2021. All Rights Reserved.