Package org.jboss.hal.dmr.dispatch
Enum ResponseHeader
- java.lang.Object
-
- java.lang.Enum<ResponseHeader>
-
- org.jboss.hal.dmr.dispatch.ResponseHeader
-
- All Implemented Interfaces:
Serializable,Comparable<ResponseHeader>
public enum ResponseHeader extends Enum<ResponseHeader>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringheader()static ResponseHeadervalueOf(String name)Returns the enum constant of this type with the specified name.static ResponseHeader[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCEPT_PATCH
public static final ResponseHeader ACCEPT_PATCH
-
ACCEPT_RANGES
public static final ResponseHeader ACCEPT_RANGES
-
ACCESS_CONTROL_ALLOW_ORIGIN
public static final ResponseHeader ACCESS_CONTROL_ALLOW_ORIGIN
-
AGE
public static final ResponseHeader AGE
-
ALLOW
public static final ResponseHeader ALLOW
-
ALT_SVC
public static final ResponseHeader ALT_SVC
-
CACHE_CONTROL
public static final ResponseHeader CACHE_CONTROL
-
CONNECTION
public static final ResponseHeader CONNECTION
-
CONTENT_DISPOSITION
public static final ResponseHeader CONTENT_DISPOSITION
-
CONTENT_ENCODING
public static final ResponseHeader CONTENT_ENCODING
-
CONTENT_LANGUAGE
public static final ResponseHeader CONTENT_LANGUAGE
-
CONTENT_LENGTH
public static final ResponseHeader CONTENT_LENGTH
-
CONTENT_LOCATION
public static final ResponseHeader CONTENT_LOCATION
-
CONTENT_MD5
public static final ResponseHeader CONTENT_MD5
-
CONTENT_RANGE
public static final ResponseHeader CONTENT_RANGE
-
CONTENT_SECURITY_POLICY
public static final ResponseHeader CONTENT_SECURITY_POLICY
-
CONTENT_TYPE
public static final ResponseHeader CONTENT_TYPE
-
DATE
public static final ResponseHeader DATE
-
ETAG
public static final ResponseHeader ETAG
-
EXPIRES
public static final ResponseHeader EXPIRES
-
LAST_MODIFIED
public static final ResponseHeader LAST_MODIFIED
-
LINK
public static final ResponseHeader LINK
-
LOCATION
public static final ResponseHeader LOCATION
-
P3P
public static final ResponseHeader P3P
-
PRAGMA
public static final ResponseHeader PRAGMA
-
PROXY_AUTHENTICATE
public static final ResponseHeader PROXY_AUTHENTICATE
-
PUBLIC_KEY_PINS
public static final ResponseHeader PUBLIC_KEY_PINS
-
REFRESH
public static final ResponseHeader REFRESH
-
RETRY_AFTER
public static final ResponseHeader RETRY_AFTER
-
SERVER
public static final ResponseHeader SERVER
-
SET_COOKIE
public static final ResponseHeader SET_COOKIE
-
STATUS
public static final ResponseHeader STATUS
-
STRICT_TRANSPORT_SECURITY
public static final ResponseHeader STRICT_TRANSPORT_SECURITY
-
TRAILER
public static final ResponseHeader TRAILER
-
TRANSFER_ENCODING
public static final ResponseHeader TRANSFER_ENCODING
-
TSV
public static final ResponseHeader TSV
-
UPGRADE
public static final ResponseHeader UPGRADE
-
UPGRADE_INSECURE_REQUESTS
public static final ResponseHeader UPGRADE_INSECURE_REQUESTS
-
VARY
public static final ResponseHeader VARY
-
VIA
public static final ResponseHeader VIA
-
WARNING
public static final ResponseHeader WARNING
-
WWW_AUTHENTICATE
public static final ResponseHeader WWW_AUTHENTICATE
-
X_CONTENT_DURATION
public static final ResponseHeader X_CONTENT_DURATION
-
X_CONTENT_SECURITY_POLICY
public static final ResponseHeader X_CONTENT_SECURITY_POLICY
-
X_CONTENT_TYPE_OPTIONS
public static final ResponseHeader X_CONTENT_TYPE_OPTIONS
-
X_CORRELATION_ID
public static final ResponseHeader X_CORRELATION_ID
-
X_FRAME_OPTIONS
public static final ResponseHeader X_FRAME_OPTIONS
-
X_POWERED_BY
public static final ResponseHeader X_POWERED_BY
-
X_REQUEST_ID
public static final ResponseHeader X_REQUEST_ID
-
X_UA_COMPATIBLE
public static final ResponseHeader X_UA_COMPATIBLE
-
X_WEBKIT_CSP
public static final ResponseHeader X_WEBKIT_CSP
-
X_XSS_PROTECTION
public static final ResponseHeader X_XSS_PROTECTION
-
-
Method Detail
-
values
public static ResponseHeader[] 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 (ResponseHeader c : ResponseHeader.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResponseHeader valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
header
public String header()
-
-