public enum VoiceCallStatus extends Enum<VoiceCallStatus>
| Enum Constant and Description |
|---|
busy |
ended |
failed |
no_answer |
ongoing |
queued |
starting |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static VoiceCallStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VoiceCallStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VoiceCallStatus queued
public static final VoiceCallStatus starting
public static final VoiceCallStatus ongoing
public static final VoiceCallStatus ended
public static final VoiceCallStatus failed
public static final VoiceCallStatus busy
public static final VoiceCallStatus no_answer
public static VoiceCallStatus[] values()
for (VoiceCallStatus c : VoiceCallStatus.values()) System.out.println(c);
public static VoiceCallStatus 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 getValue()
Copyright © 2024. All rights reserved.