public enum SipTargetedRequestType extends Enum<SipTargetedRequestType>
Enum Constant and Description |
---|
ENCODED_URI
The request contains a Request-URI that contains an encoded URI
|
JOIN
The request contains a Join header (RFC 3911)
|
REPLACES
The request contains a Replaces header (RFC 3891)
|
Modifier and Type | Method and Description |
---|---|
static SipTargetedRequestType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SipTargetedRequestType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SipTargetedRequestType JOIN
public static final SipTargetedRequestType REPLACES
public static final SipTargetedRequestType ENCODED_URI
public static SipTargetedRequestType[] values()
for (SipTargetedRequestType c : SipTargetedRequestType.values()) System.out.println(c);
public static SipTargetedRequestType 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 © 1996-2015, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.