Package com.opentok.android
Enum Session.Builder.IncludeServers
- java.lang.Object
-
- java.lang.Enum<Session.Builder.IncludeServers>
-
- com.opentok.android.Session.Builder.IncludeServers
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Session.Builder.IncludeServers>
- Enclosing class:
- Session.Builder
public static enum Session.Builder.IncludeServers extends java.lang.Enum<Session.Builder.IncludeServers>
This is part of the configurable TURN feature.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Session.Builder.IncludeServers
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Session.Builder.IncludeServers[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
All
public static final Session.Builder.IncludeServers All
-
Custom
public static final Session.Builder.IncludeServers Custom
-
-
Method Detail
-
values
public static Session.Builder.IncludeServers[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Session.Builder.IncludeServers c : Session.Builder.IncludeServers.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Session.Builder.IncludeServers valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-