public static enum Call.Issue extends Enum<Call.Issue>
Enum Constant and Description |
---|
AUDIO_LATENCY
Participants can hear each other but with significant delay.
|
CHOPPY_AUDIO
Periodically, participants couldn’t hear each other.
|
DROPPED_CALL
Call initially connected but was dropped.
|
ECHO
There was echo during call.
|
NOISY_CALL
There was disturbance, background noise, low clarity.
|
NOT_REPORTED
No issue reported.
|
ONE_WAY_AUDIO
One participant couldn’t hear the other.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Call.Issue |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Call.Issue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Call.Issue NOT_REPORTED
public static final Call.Issue DROPPED_CALL
public static final Call.Issue AUDIO_LATENCY
public static final Call.Issue ONE_WAY_AUDIO
public static final Call.Issue CHOPPY_AUDIO
public static final Call.Issue NOISY_CALL
public static final Call.Issue ECHO
public static Call.Issue[] values()
for (Call.Issue c : Call.Issue.values()) System.out.println(c);
public static Call.Issue 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 nullpublic String toString()
toString
in class Enum<Call.Issue>
5.3.0