public static enum HttpHeaderReader.Event extends Enum<HttpHeaderReader.Event>
Enum Constant and Description |
---|
Comment |
Control |
QuotedString |
Separator |
Token |
Modifier and Type | Method and Description |
---|---|
static HttpHeaderReader.Event |
valueOf(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(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2007-2021, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.