com.vaadin.server
Enum VaadinPortlet.RequestType

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

Deprecated. As of 7.0. Will likely change or be removed in a future version

@Deprecated
protected static enum VaadinPortlet.RequestType
extends java.lang.Enum<VaadinPortlet.RequestType>

Author:
Vaadin Ltd

Enum Constant Summary
ACTION
          Deprecated.  
APP
          Deprecated.  
BROWSER_DETAILS
          Deprecated.  
DUMMY
          Deprecated.  
EVENT
          Deprecated.  
FILE_UPLOAD
          Deprecated.  
HEARTBEAT
          Deprecated.  
PUBLISHED_FILE
          Deprecated.  
RENDER
          Deprecated.  
STATIC_FILE
          Deprecated.  
UIDL
          Deprecated.  
UNKNOWN
          Deprecated.  
 
Method Summary
static VaadinPortlet.RequestType valueOf(java.lang.String name)
          Deprecated. Returns the enum constant of this type with the specified name.
static VaadinPortlet.RequestType[] values()
          Deprecated. 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

FILE_UPLOAD

public static final VaadinPortlet.RequestType FILE_UPLOAD
Deprecated. 

UIDL

public static final VaadinPortlet.RequestType UIDL
Deprecated. 

RENDER

public static final VaadinPortlet.RequestType RENDER
Deprecated. 

STATIC_FILE

public static final VaadinPortlet.RequestType STATIC_FILE
Deprecated. 

APP

public static final VaadinPortlet.RequestType APP
Deprecated. 

DUMMY

public static final VaadinPortlet.RequestType DUMMY
Deprecated. 

EVENT

public static final VaadinPortlet.RequestType EVENT
Deprecated. 

ACTION

public static final VaadinPortlet.RequestType ACTION
Deprecated. 

UNKNOWN

public static final VaadinPortlet.RequestType UNKNOWN
Deprecated. 

BROWSER_DETAILS

public static final VaadinPortlet.RequestType BROWSER_DETAILS
Deprecated. 

PUBLISHED_FILE

public static final VaadinPortlet.RequestType PUBLISHED_FILE
Deprecated. 

HEARTBEAT

public static final VaadinPortlet.RequestType HEARTBEAT
Deprecated. 
Method Detail

values

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

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

valueOf

public static VaadinPortlet.RequestType valueOf(java.lang.String name)
Deprecated. 
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


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