org.red5.server.net.rtsp
Enum RTSPRequest.Verb

java.lang.Object
  extended by java.lang.Enum<RTSPRequest.Verb>
      extended by org.red5.server.net.rtsp.RTSPRequest.Verb
All Implemented Interfaces:
Serializable, Comparable<RTSPRequest.Verb>
Enclosing class:
RTSPRequest

public static enum RTSPRequest.Verb
extends Enum<RTSPRequest.Verb>


Enum Constant Summary
ANNOUNCE
           
DESCRIBE
           
GET_PARAMETER
           
None
           
OPTIONS
           
PAUSE
           
PLAY
           
RECORD
           
REDIRECT
           
SET_PARAMETER
           
SETUP
           
TEARDOWN
           
 
Method Summary
static RTSPRequest.Verb valueOf(String name)
          Returns the enum constant of this type with the specified name.
static RTSPRequest.Verb[] 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

None

public static final RTSPRequest.Verb None

ANNOUNCE

public static final RTSPRequest.Verb ANNOUNCE

DESCRIBE

public static final RTSPRequest.Verb DESCRIBE

GET_PARAMETER

public static final RTSPRequest.Verb GET_PARAMETER

OPTIONS

public static final RTSPRequest.Verb OPTIONS

PAUSE

public static final RTSPRequest.Verb PAUSE

PLAY

public static final RTSPRequest.Verb PLAY

RECORD

public static final RTSPRequest.Verb RECORD

REDIRECT

public static final RTSPRequest.Verb REDIRECT

SETUP

public static final RTSPRequest.Verb SETUP

SET_PARAMETER

public static final RTSPRequest.Verb SET_PARAMETER

TEARDOWN

public static final RTSPRequest.Verb TEARDOWN
Method Detail

values

public static RTSPRequest.Verb[] 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 (RTSPRequest.Verb c : RTSPRequest.Verb.values())
    System.out.println(c);

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

valueOf

public static RTSPRequest.Verb valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2006-2009 The Red5 Project