public static enum Call.Score extends Enum<Call.Score>
Enum Constant and Description |
---|
FIVE
Great call quality.
|
FOUR
Good call quality, minor issues.
|
NOT_REPORTED
No score reported.
|
ONE
Terrible call quality, call dropped, or caused great difficulty in communicating.
|
THREE
Average call quality, manageable with some noise/minor packet loss.
|
TWO
Bad call quality, like choppy audio, periodic one-way-audio.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static Call.Score |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Call.Score[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Call.Score NOT_REPORTED
public static final Call.Score ONE
public static final Call.Score TWO
public static final Call.Score THREE
public static final Call.Score FOUR
public static final Call.Score FIVE
public static Call.Score[] values()
for (Call.Score c : Call.Score.values()) System.out.println(c);
public static Call.Score 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 int getValue()
5.2.0