public enum Client extends Enum<Client>
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Client |
value2Client(String value) |
static Client |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Client[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Client PLAYER
public static final Client WEBRTC
public static final Client ROOM
public static final Client SCREEN
public static final Client ROOT
public static Client[] values()
for (Client c : Client.values()) System.out.println(c);
public static Client 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 © 2015 Kurento. All rights reserved.