public static enum ClientActivation.Type extends java.lang.Enum<ClientActivation.Type>
| Enum Constant and Description |
|---|
INHERIT |
PUSH_TO_TALK |
VOICE |
| Modifier and Type | Method and Description |
|---|---|
static ClientActivation.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClientActivation.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientActivation.Type PUSH_TO_TALK
public static final ClientActivation.Type VOICE
public static final ClientActivation.Type INHERIT
public static ClientActivation.Type[] values()
for (ClientActivation.Type c : ClientActivation.Type.values()) System.out.println(c);
public static ClientActivation.Type 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