public enum ShareGroupState extends Enum<ShareGroupState>
| Modifier and Type | Method and Description |
|---|---|
static ShareGroupState | parse(String name)Case-insensitive share group state lookup by string name. |
String | toString() |
static ShareGroupState | valueOf(String name)Returns the enum constant of this type with the specified name. |
static ShareGroupState[] | values()Returns an array containing the constants of this enum type, in the order they are declared. |
public static final ShareGroupState UNKNOWN
public static final ShareGroupState STABLE
public static final ShareGroupState DEAD
public static final ShareGroupState EMPTY
public static ShareGroupState[] values()
for (ShareGroupState c : ShareGroupState.values()) System.out.println(c);
public static ShareGroupState 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 static ShareGroupState parse(String name)
public String toString()
toString in class Enum<ShareGroupState>