public enum Header extends java.lang.Enum<Header>
| Enum Constant | Description |
|---|---|
ACCEPT |
|
AUTH |
|
AUTH_MISSING |
|
CACHE_CONTROL |
|
CONTENT_TYPE |
|
LOCATION |
|
PRAGMA |
| Modifier and Type | Method | Description |
|---|---|---|
java.lang.String |
getValue() |
|
static Header |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Header[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Header AUTH
public static final Header AUTH_MISSING
public static final Header ACCEPT
public static final Header CACHE_CONTROL
public static final Header PRAGMA
public static final Header CONTENT_TYPE
public static final Header LOCATION
public static Header[] values()
for (Header c : Header.values()) System.out.println(c);
public static Header 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 nullpublic java.lang.String getValue()