public static enum GroupMember.Status extends Enum<GroupMember.Status>
| Enum Constant and Description |
|---|
ALIVE
Indicates that the member is alive and communicating with the group.
|
DEAD
Indicates that the member's session was expired.
|
| Modifier and Type | Method and Description |
|---|---|
static GroupMember.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GroupMember.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupMember.Status ALIVE
public static final GroupMember.Status DEAD
public static GroupMember.Status[] values()
for (GroupMember.Status c : GroupMember.Status.values()) System.out.println(c);
public static GroupMember.Status 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 © 2013–2017. All rights reserved.