public enum VoiceLegStatus extends Enum<VoiceLegStatus>
| Enum Constant and Description |
|---|
Busy |
Failed |
Hangup |
NoAnswer |
Ongoing |
Ringing |
Starting |
| Modifier and Type | Method and Description |
|---|---|
static VoiceLegStatus |
forValue(String value) |
static VoiceLegStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VoiceLegStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VoiceLegStatus Starting
public static final VoiceLegStatus Ringing
public static final VoiceLegStatus Ongoing
public static final VoiceLegStatus Busy
public static final VoiceLegStatus NoAnswer
public static final VoiceLegStatus Failed
public static final VoiceLegStatus Hangup
public static VoiceLegStatus[] values()
for (VoiceLegStatus c : VoiceLegStatus.values()) System.out.println(c);
public static VoiceLegStatus 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 static VoiceLegStatus forValue(String value)
Copyright © 2024. All rights reserved.