Package org.eclipse.jetty.http
Enum HttpComplianceSection
- java.lang.Object
-
- java.lang.Enum<HttpComplianceSection>
-
- org.eclipse.jetty.http.HttpComplianceSection
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<HttpComplianceSection>
public enum HttpComplianceSection extends java.lang.Enum<HttpComplianceSection>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDescription()
java.lang.String
getURL()
static HttpComplianceSection
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HttpComplianceSection[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CASE_INSENSITIVE_FIELD_VALUE_CACHE
public static final HttpComplianceSection CASE_INSENSITIVE_FIELD_VALUE_CACHE
-
METHOD_CASE_SENSITIVE
public static final HttpComplianceSection METHOD_CASE_SENSITIVE
-
FIELD_COLON
public static final HttpComplianceSection FIELD_COLON
-
FIELD_NAME_CASE_INSENSITIVE
public static final HttpComplianceSection FIELD_NAME_CASE_INSENSITIVE
-
NO_WS_AFTER_FIELD_NAME
public static final HttpComplianceSection NO_WS_AFTER_FIELD_NAME
-
NO_FIELD_FOLDING
public static final HttpComplianceSection NO_FIELD_FOLDING
-
NO_HTTP_0_9
public static final HttpComplianceSection NO_HTTP_0_9
-
TRANSFER_ENCODING_WITH_CONTENT_LENGTH
public static final HttpComplianceSection TRANSFER_ENCODING_WITH_CONTENT_LENGTH
-
MULTIPLE_CONTENT_LENGTHS
public static final HttpComplianceSection MULTIPLE_CONTENT_LENGTHS
-
NO_AMBIGUOUS_PATH_SEGMENTS
public static final HttpComplianceSection NO_AMBIGUOUS_PATH_SEGMENTS
-
NO_AMBIGUOUS_PATH_SEPARATORS
public static final HttpComplianceSection NO_AMBIGUOUS_PATH_SEPARATORS
-
NO_AMBIGUOUS_PATH_PARAMETERS
public static final HttpComplianceSection NO_AMBIGUOUS_PATH_PARAMETERS
-
NO_UTF16_ENCODINGS
public static final HttpComplianceSection NO_UTF16_ENCODINGS
-
NO_AMBIGUOUS_EMPTY_SEGMENT
public static final HttpComplianceSection NO_AMBIGUOUS_EMPTY_SEGMENT
-
NO_AMBIGUOUS_PATH_ENCODING
public static final HttpComplianceSection NO_AMBIGUOUS_PATH_ENCODING
-
-
Method Detail
-
values
public static HttpComplianceSection[] 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 (HttpComplianceSection c : HttpComplianceSection.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HttpComplianceSection 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 namejava.lang.NullPointerException
- if the argument is null
-
getURL
public java.lang.String getURL()
-
getDescription
public java.lang.String getDescription()
-
-