public static enum Group.GroupMemberServerConnection extends java.lang.Enum<Group.GroupMemberServerConnection>
The group server available field of a group status advisory message can contain a value of this enumerated type.
Group.FIELD_GROUP_SERVER_AVAILABLE| Enum Constant and Description |
|---|
AVAILABLE
The application is connected to the group server.
|
UNAVAILABLE
The application is not connected to the group server.
|
| Modifier and Type | Method and Description |
|---|---|
static Group.GroupMemberServerConnection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Group.GroupMemberServerConnection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Group.GroupMemberServerConnection UNAVAILABLE
public static final Group.GroupMemberServerConnection AVAILABLE
public static Group.GroupMemberServerConnection[] values()
for (Group.GroupMemberServerConnection c : Group.GroupMemberServerConnection.values()) System.out.println(c);
public static Group.GroupMemberServerConnection 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 null