public enum ClusteredEntityState extends Enum<ClusteredEntityState>
| Enum Constant and Description |
|---|
DESTROY_IN_PROGRESS |
LIVE |
| Modifier and Type | Method and Description |
|---|---|
static ClusteredEntityState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClusteredEntityState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClusteredEntityState LIVE
public static final ClusteredEntityState DESTROY_IN_PROGRESS
public static ClusteredEntityState[] values()
for (ClusteredEntityState c : ClusteredEntityState.values()) System.out.println(c);
public static ClusteredEntityState 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 © 2019 Terracotta, Inc.. All rights reserved.