Package io.netty.handler.codec.http
Enum HttpChunkLineValidatingByteProcessor.State
- java.lang.Object
-
- java.lang.Enum<HttpChunkLineValidatingByteProcessor.State>
-
- io.netty.handler.codec.http.HttpChunkLineValidatingByteProcessor.State
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<HttpChunkLineValidatingByteProcessor.State>
- Enclosing class:
- HttpChunkLineValidatingByteProcessor
private static enum HttpChunkLineValidatingByteProcessor.State extends java.lang.Enum<HttpChunkLineValidatingByteProcessor.State>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ChunkExtNameChunkExtValQuotedChunkExtValQuotedEndChunkExtValQuotedEscapeChunkExtValStartChunkExtValTokenSize
-
Field Summary
Fields Modifier and Type Field Description private HttpChunkLineValidatingByteProcessor.Match[]matches
-
Constructor Summary
Constructors Modifier Constructor Description privateState(HttpChunkLineValidatingByteProcessor.Match... matches)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) HttpChunkLineValidatingByteProcessor.Statematch(byte value)static HttpChunkLineValidatingByteProcessor.StatevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static HttpChunkLineValidatingByteProcessor.State[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Size
public static final HttpChunkLineValidatingByteProcessor.State Size
-
ChunkExtName
public static final HttpChunkLineValidatingByteProcessor.State ChunkExtName
-
ChunkExtValStart
public static final HttpChunkLineValidatingByteProcessor.State ChunkExtValStart
-
ChunkExtValQuoted
public static final HttpChunkLineValidatingByteProcessor.State ChunkExtValQuoted
-
ChunkExtValQuotedEscape
public static final HttpChunkLineValidatingByteProcessor.State ChunkExtValQuotedEscape
-
ChunkExtValQuotedEnd
public static final HttpChunkLineValidatingByteProcessor.State ChunkExtValQuotedEnd
-
ChunkExtValToken
public static final HttpChunkLineValidatingByteProcessor.State ChunkExtValToken
-
-
Field Detail
-
matches
private final HttpChunkLineValidatingByteProcessor.Match[] matches
-
-
Constructor Detail
-
State
private State(HttpChunkLineValidatingByteProcessor.Match... matches)
-
-
Method Detail
-
values
public static HttpChunkLineValidatingByteProcessor.State[] 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 (HttpChunkLineValidatingByteProcessor.State c : HttpChunkLineValidatingByteProcessor.State.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HttpChunkLineValidatingByteProcessor.State 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
-
match
HttpChunkLineValidatingByteProcessor.State match(byte value)
-
-