public enum SipMethodTypes extends java.lang.Enum<SipMethodTypes>
HeaderField
Enum Constant and Description |
---|
All
ALL SIP methods
|
Info
SIP NFO method
|
Invite
SIP NVITE method
|
Message
SIP MESSAGE method
|
None
None - not allowed anywhere
|
Notify
SIP NOTIFY method
|
Options
SIP OPTIONS method
|
Publish
SIP PUBLISH method
|
Register
SIP REGISTER method
|
Service
SIP SERVICE method
|
Subscribe
SIP SUBSCRIBE method
|
Modifier and Type | Method and Description |
---|---|
static SipMethodTypes |
fromInt(int i) |
static SipMethodTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SipMethodTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SipMethodTypes None
public static final SipMethodTypes Invite
public static final SipMethodTypes Notify
public static final SipMethodTypes Options
public static final SipMethodTypes Register
public static final SipMethodTypes Subscribe
public static final SipMethodTypes Message
public static final SipMethodTypes Info
public static final SipMethodTypes Publish
public static final SipMethodTypes Service
public static final SipMethodTypes All
public static SipMethodTypes[] values()
for (SipMethodTypes c : SipMethodTypes.values()) System.out.println(c);
public static SipMethodTypes 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 SipMethodTypes fromInt(int i)