public static enum HttpHeaderReader.Event extends java.lang.Enum<HttpHeaderReader.Event>
| Enum Constant and Description |
|---|
Comment |
Control |
QuotedString |
Separator |
Token |
| Modifier and Type | Method and Description |
|---|---|
static HttpHeaderReader.Event |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HttpHeaderReader.Event[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpHeaderReader.Event Token
public static final HttpHeaderReader.Event QuotedString
public static final HttpHeaderReader.Event Comment
public static final HttpHeaderReader.Event Separator
public static final HttpHeaderReader.Event Control
public static HttpHeaderReader.Event[] values()
for (HttpHeaderReader.Event c : HttpHeaderReader.Event.values()) System.out.println(c);
public static HttpHeaderReader.Event valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2016 Oracle Corporation. All Rights Reserved.