Package org.eclipse.jetty.http
Enum HttpParser.ChunkSizeState
- java.lang.Object
-
- java.lang.Enum<HttpParser.ChunkSizeState>
-
- org.eclipse.jetty.http.HttpParser.ChunkSizeState
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<HttpParser.ChunkSizeState>
- Enclosing class:
- HttpParser
public static enum HttpParser.ChunkSizeState extends java.lang.Enum<HttpParser.ChunkSizeState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXT_BWSEXT_NAMEEXT_NAME_BWS_AFTEREXT_NAME_BWS_BEFOREEXT_VALUEEXT_VALUE_BWS_BEFOREEXT_VALUE_CLOSE_QUOTEEXT_VALUE_OPEN_QUOTESIZE
-
Constructor Summary
Constructors Modifier Constructor Description privateChunkSizeState()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HttpParser.ChunkSizeStatevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static HttpParser.ChunkSizeState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SIZE
public static final HttpParser.ChunkSizeState SIZE
-
EXT_BWS
public static final HttpParser.ChunkSizeState EXT_BWS
-
EXT_NAME_BWS_BEFORE
public static final HttpParser.ChunkSizeState EXT_NAME_BWS_BEFORE
-
EXT_NAME
public static final HttpParser.ChunkSizeState EXT_NAME
-
EXT_NAME_BWS_AFTER
public static final HttpParser.ChunkSizeState EXT_NAME_BWS_AFTER
-
EXT_VALUE_BWS_BEFORE
public static final HttpParser.ChunkSizeState EXT_VALUE_BWS_BEFORE
-
EXT_VALUE_OPEN_QUOTE
public static final HttpParser.ChunkSizeState EXT_VALUE_OPEN_QUOTE
-
EXT_VALUE
public static final HttpParser.ChunkSizeState EXT_VALUE
-
EXT_VALUE_CLOSE_QUOTE
public static final HttpParser.ChunkSizeState EXT_VALUE_CLOSE_QUOTE
-
-
Method Detail
-
values
public static HttpParser.ChunkSizeState[] 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 (HttpParser.ChunkSizeState c : HttpParser.ChunkSizeState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HttpParser.ChunkSizeState 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
-
-