com.eviware.soapui.impl.rest
Enum RestRequestInterface.RequestMethod

java.lang.Object
  extended by java.lang.Enum<RestRequestInterface.RequestMethod>
      extended by com.eviware.soapui.impl.rest.RestRequestInterface.RequestMethod
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<RestRequestInterface.RequestMethod>
Enclosing interface:
RestRequestInterface

public static enum RestRequestInterface.RequestMethod
extends java.lang.Enum<RestRequestInterface.RequestMethod>


Enum Constant Summary
DELETE
           
GET
           
HEAD
           
OPTIONS
           
POST
           
PUT
           
TRACE
           
 
Method Summary
static RestRequestInterface.RequestMethod[] getMethods()
           
static java.lang.String[] getMethodsAsStringArray()
           
static RestRequestInterface.RequestMethod valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RestRequestInterface.RequestMethod[] 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

GET

public static final RestRequestInterface.RequestMethod GET

POST

public static final RestRequestInterface.RequestMethod POST

PUT

public static final RestRequestInterface.RequestMethod PUT

DELETE

public static final RestRequestInterface.RequestMethod DELETE

HEAD

public static final RestRequestInterface.RequestMethod HEAD

OPTIONS

public static final RestRequestInterface.RequestMethod OPTIONS

TRACE

public static final RestRequestInterface.RequestMethod TRACE
Method Detail

values

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

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

valueOf

public static RestRequestInterface.RequestMethod 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

getMethodsAsStringArray

public static java.lang.String[] getMethodsAsStringArray()

getMethods

public static RestRequestInterface.RequestMethod[] getMethods()


Copyright © 2005-2009 eviware.com. All Rights Reserved.