public static enum UriUtils.DisallowedHeaders extends Enum<UriUtils.DisallowedHeaders>
| Enum Constant and Description |
|---|
CACHING_DIRECTIVES |
CLIENT_STATE_DIRECTIVES |
OUTPUT_TRANSFER_DIRECTIVES |
POST_INCOMPATIBLE_DIRECTIVES |
| Modifier and Type | Method and Description |
|---|---|
Set<String> |
getDisallowedHeaders() |
static UriUtils.DisallowedHeaders |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UriUtils.DisallowedHeaders[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UriUtils.DisallowedHeaders OUTPUT_TRANSFER_DIRECTIVES
public static final UriUtils.DisallowedHeaders CACHING_DIRECTIVES
public static final UriUtils.DisallowedHeaders CLIENT_STATE_DIRECTIVES
public static final UriUtils.DisallowedHeaders POST_INCOMPATIBLE_DIRECTIVES
public static UriUtils.DisallowedHeaders[] values()
for (UriUtils.DisallowedHeaders c : UriUtils.DisallowedHeaders.values()) System.out.println(c);
public static UriUtils.DisallowedHeaders 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-2012. All Rights Reserved.