Package com.vaadin.server
Enum VaadinPortlet.RequestType
- java.lang.Object
-
- java.lang.Enum<VaadinPortlet.RequestType>
-
- com.vaadin.server.VaadinPortlet.RequestType
-
- All Implemented Interfaces:
Serializable,Comparable<VaadinPortlet.RequestType>
- Enclosing class:
- VaadinPortlet
@Deprecated protected static enum VaadinPortlet.RequestType extends Enum<VaadinPortlet.RequestType>
Deprecated.As of 7.0. This is no longer used and only provided for backwards compatibility. EachRequestHandlercan individually decide whether it wants to handle a request or not.- Author:
- Vaadin Ltd
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIONDeprecated.APPDeprecated.BROWSER_DETAILSDeprecated.DUMMYDeprecated.EVENTDeprecated.FILE_UPLOADDeprecated.HEARTBEATDeprecated.PUBLISHED_FILEDeprecated.RENDERDeprecated.STATIC_FILEDeprecated.UIDLDeprecated.UNKNOWNDeprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static VaadinPortlet.RequestTypevalueOf(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.
-
-
-
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(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-