public enum SdpExchangeStatus extends Enum<SdpExchangeStatus>
| Enum Constant and Description |
|---|
COMPLETE
SDP exchange is complete at this time.
|
NA
Status not available.
|
PENDING
There is a SDP offer received or sent out, but corresponding
answer has not been sent or received.
|
| Modifier and Type | Method and Description |
|---|---|
static SdpExchangeStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SdpExchangeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SdpExchangeStatus NA
public static final SdpExchangeStatus PENDING
public static final SdpExchangeStatus COMPLETE
public static SdpExchangeStatus[] values()
for (SdpExchangeStatus c : SdpExchangeStatus.values()) System.out.println(c);
public static SdpExchangeStatus 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 null