java.lang.Object

java.lang.Enum<Session.Builder.TransportPolicy>

com.opentok.android.Session.Builder.TransportPolicy

All Implemented Interfaces: : Serializable, Comparable<Session.Builder.TransportPolicy>, Constable

Enclosing class: : Session.Builder


public static enum Session.Builder.TransportPolicy extends Enum<Session.Builder.TransportPolicy>

Defines settings for whether to use all ICE transport types (such as host, srflx, and TURN) to establish media connectivity or to only use TURN. Used in the Session.Builder.setIceRouting(TransportPolicy) method.

Nested Class Summary

Nested classes/interfaces inherited from class java.lang.Enum

Enum.EnumDesc<E extends Enum<E>>

Enum Constant Summary

Enum Constants

Enum Constant

Description

All

The client will use all ICE candidate types (such as host, srflx, and TURN) to establish media connectivity.

Relay

The client will force connectivity through TURN always and ignore all other ICE candidates.

Method Summary

All MethodsStatic MethodsConcrete Methods

Modifier and Type

Method

Description

static Session.Builder.TransportPolicy

valueOf(String name)

Returns the enum constant of this class with the specified name.

static Session.Builder.TransportPolicy[]

values()

Returns an array containing the constants of this enum class, in the order they are declared.

Methods inherited from class java.lang.Enum

clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

Methods inherited from class java.lang.Object

getClass, notify, notifyAll, wait, wait, wait

Enum Constant Details

All

public static final Session.Builder.TransportPolicy All

The client will use all ICE candidate types (such as host, srflx, and TURN) to establish media connectivity.

Relay

public static final Session.Builder.TransportPolicy Relay

The client will force connectivity through TURN always and ignore all other ICE candidates.

Method Details

values

public static Session.Builder.TransportPolicy[] values()

Returns an array containing the constants of this enum class, in the order they are declared.

Returns: : an array containing the constants of this enum class, in the order they are declared

valueOf

public static Session.Builder.TransportPolicy valueOf(String name)

Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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: : IllegalArgumentException - if this enum class has no constant with the specified name : NullPointerException - if the argument is null