com.acsinet_solutions.cetia4.controller
Enum MethodType

java.lang.Object
  extended by java.lang.Enum<MethodType>
      extended by com.acsinet_solutions.cetia4.controller.MethodType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MethodType>

public enum MethodType
extends java.lang.Enum<MethodType>

Simple method type enumeration

Author:
Santiago Arriaga

Enum Constant Summary
ACTION
          Action methods answer POST, PUT, DELETE request in REST environments, and is the action phase in portlet environments.
MULTIPART
          This is an action method with multipart content.
RENDER
          Render methods answer GET requests in REST environments, and is the render phase in portlet environments.
 
Method Summary
static MethodType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MethodType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

RENDER

public static final MethodType RENDER
Render methods answer GET requests in REST environments, and is the render phase in portlet environments.


ACTION

public static final MethodType ACTION
Action methods answer POST, PUT, DELETE request in REST environments, and is the action phase in portlet environments.


MULTIPART

public static final MethodType MULTIPART
This is an action method with multipart content.

Method Detail

values

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

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

valueOf

public static MethodType 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