public static enum OpentokError.Domain extends java.lang.Enum<OpentokError.Domain>
OpentokError.getErrorDomain()
Enum Constant and Description |
---|
PublisherErrorDomain
The error pertains to a
Publisher object. |
SessionErrorDomain
The error pertains to a
Session object. |
SubscriberErrorDomain
The error pertains to a
Subscriber object. |
Modifier and Type | Method and Description |
---|---|
static OpentokError.Domain |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OpentokError.Domain[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OpentokError.Domain SessionErrorDomain
Session
object.public static final OpentokError.Domain PublisherErrorDomain
Publisher
object.public static final OpentokError.Domain SubscriberErrorDomain
Subscriber
object.public static OpentokError.Domain[] values()
for (OpentokError.Domain c : OpentokError.Domain.values()) System.out.println(c);
public static OpentokError.Domain 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