public enum RPortType extends java.lang.Enum<RPortType>
Enum Constant and Description |
---|
No
Do not use RPort
|
Signaling
Enables usage of RPort discovered public address for signaling negotiations
|
SignalingAndMedia
Enables usage of RPort discovered public address for both signaling and media negotiations.
|
Modifier and Type | Method and Description |
---|---|
static RPortType |
fromInt(int i) |
static RPortType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RPortType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RPortType No
public static final RPortType Signaling
public static final RPortType SignalingAndMedia
public static RPortType[] values()
for (RPortType c : RPortType.values()) System.out.println(c);
public static RPortType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static RPortType fromInt(int i)