com.vaadin.terminal.gwt.server
Enum AbstractApplicationPortlet.RequestType

java.lang.Object
  extended by java.lang.Enum<AbstractApplicationPortlet.RequestType>
      extended by com.vaadin.terminal.gwt.server.AbstractApplicationPortlet.RequestType
All Implemented Interfaces:
Serializable, Comparable<AbstractApplicationPortlet.RequestType>
Enclosing class:
AbstractApplicationPortlet

protected static enum AbstractApplicationPortlet.RequestType
extends Enum<AbstractApplicationPortlet.RequestType>


Enum Constant Summary
ACTION
           
APPLICATION_RESOURCE
           
DUMMY
           
EVENT
           
FILE_UPLOAD
           
RENDER
           
STATIC_FILE
           
UIDL
           
UNKNOWN
           
 
Method Summary
static AbstractApplicationPortlet.RequestType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AbstractApplicationPortlet.RequestType[] 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

FILE_UPLOAD

public static final AbstractApplicationPortlet.RequestType FILE_UPLOAD

UIDL

public static final AbstractApplicationPortlet.RequestType UIDL

RENDER

public static final AbstractApplicationPortlet.RequestType RENDER

STATIC_FILE

public static final AbstractApplicationPortlet.RequestType STATIC_FILE

APPLICATION_RESOURCE

public static final AbstractApplicationPortlet.RequestType APPLICATION_RESOURCE

DUMMY

public static final AbstractApplicationPortlet.RequestType DUMMY

EVENT

public static final AbstractApplicationPortlet.RequestType EVENT

ACTION

public static final AbstractApplicationPortlet.RequestType ACTION

UNKNOWN

public static final AbstractApplicationPortlet.RequestType UNKNOWN
Method Detail

values

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

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

valueOf

public static AbstractApplicationPortlet.RequestType 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


Copyright © 2000-2011 Vaadin Ltd. All Rights Reserved.