Enum TemplateTargetBuilder.Variable
- java.lang.Object
-
- java.lang.Enum<TemplateTargetBuilder.Variable>
-
- org.apache.abdera.protocol.server.impl.TemplateTargetBuilder.Variable
-
- All Implemented Interfaces:
Serializable,Comparable<TemplateTargetBuilder.Variable>
- Enclosing class:
- TemplateTargetBuilder
public static enum TemplateTargetBuilder.Variable extends Enum<TemplateTargetBuilder.Variable>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TemplateTargetBuilder.VariablevalueOf(String name)Returns the enum constant of this type with the specified name.static TemplateTargetBuilder.Variable[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REQUEST_CONTEXT_PATH
public static final TemplateTargetBuilder.Variable REQUEST_CONTEXT_PATH
-
REQUEST_CONTENT_TYPE
public static final TemplateTargetBuilder.Variable REQUEST_CONTENT_TYPE
-
REQUEST_URI
public static final TemplateTargetBuilder.Variable REQUEST_URI
-
REQUEST_RESOLVED_URI
public static final TemplateTargetBuilder.Variable REQUEST_RESOLVED_URI
-
REQUEST_PARAMETER
public static final TemplateTargetBuilder.Variable REQUEST_PARAMETER
-
REQUEST_LANGUAGE
public static final TemplateTargetBuilder.Variable REQUEST_LANGUAGE
-
REQUEST_CHARSET
public static final TemplateTargetBuilder.Variable REQUEST_CHARSET
-
REQUEST_USER
public static final TemplateTargetBuilder.Variable REQUEST_USER
-
SESSION_ATTRIBUTE
public static final TemplateTargetBuilder.Variable SESSION_ATTRIBUTE
-
REQUEST_ATTRIBUTE
public static final TemplateTargetBuilder.Variable REQUEST_ATTRIBUTE
-
REQUEST_HEADER
public static final TemplateTargetBuilder.Variable REQUEST_HEADER
-
TARGET_PARAMETER
public static final TemplateTargetBuilder.Variable TARGET_PARAMETER
-
TARGET_IDENTITY
public static final TemplateTargetBuilder.Variable TARGET_IDENTITY
-
TARGET_PATH
public static final TemplateTargetBuilder.Variable TARGET_PATH
-
TARGET_BASE
public static final TemplateTargetBuilder.Variable TARGET_BASE
-
-
Method Detail
-
values
public static TemplateTargetBuilder.Variable[] 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 (TemplateTargetBuilder.Variable c : TemplateTargetBuilder.Variable.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TemplateTargetBuilder.Variable 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 nameNullPointerException- if the argument is null
-
-