public enum ICEOptions extends java.lang.Enum<ICEOptions>
Enum Constant and Description |
---|
ICE_TRICKLE
Completes signaling without waiting for candidate collection.
|
ICE_VANILLA
Collects ICE candidates before initializing signaling.
|
Modifier and Type | Method and Description |
---|---|
static ICEOptions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ICEOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ICEOptions ICE_VANILLA
public static final ICEOptions ICE_TRICKLE
public static ICEOptions[] values()
for (ICEOptions c : ICEOptions.values()) System.out.println(c);
public static ICEOptions 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