public enum SdpType extends Enum<SdpType>
| Modifier and Type | Method and Description |
|---|---|
static SdpType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SdpType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SdpType OFFER
public static final SdpType ANSWER
public static SdpType[] values()
for (SdpType c : SdpType.values()) System.out.println(c);
public static SdpType 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 nullCopyright © 2016 Kurento. All rights reserved.