org.jnetpcap.protocol.voip
Enum Sip.Request

java.lang.Object
  extended by java.lang.Enum<Sip.Request>
      extended by org.jnetpcap.protocol.voip.Sip.Request
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Sip.Request>
Enclosing class:
Sip

@Field
public static enum Sip.Request
extends java.lang.Enum<Sip.Request>

A table of supported Request message types.

Author:
Mark Bednarczyk, Sly Technologies, Inc.

Enum Constant Summary
RequestMethod
          Request type.
RequestUrl
          URL field of the request.
RequestVersion
          Request version.
User_Agent
          Request user agent.
 
Method Summary
static Sip.Request valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Sip.Request[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

RequestMethod

public static final Sip.Request RequestMethod
Request type.


RequestUrl

public static final Sip.Request RequestUrl
URL field of the request.


RequestVersion

public static final Sip.Request RequestVersion
Request version.


User_Agent

public static final Sip.Request User_Agent
Request user agent.

Method Detail

values

public static Sip.Request[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Sip.Request c : Sip.Request.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Sip.Request valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null