Package com.emc.object.s3.request
Enum ResponseHeaderOverride
- java.lang.Object
-
- java.lang.Enum<ResponseHeaderOverride>
-
- com.emc.object.s3.request.ResponseHeaderOverride
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ResponseHeaderOverride>
public enum ResponseHeaderOverride extends java.lang.Enum<ResponseHeaderOverride>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CACHE_CONTROL
CONTENT_DISPOSITION
CONTENT_ENCODING
CONTENT_LANGUAGE
CONTENT_TYPE
EXPIRES
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getQueryParam()
static ResponseHeaderOverride
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ResponseHeaderOverride[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONTENT_TYPE
public static final ResponseHeaderOverride CONTENT_TYPE
-
CONTENT_LANGUAGE
public static final ResponseHeaderOverride CONTENT_LANGUAGE
-
EXPIRES
public static final ResponseHeaderOverride EXPIRES
-
CACHE_CONTROL
public static final ResponseHeaderOverride CACHE_CONTROL
-
CONTENT_DISPOSITION
public static final ResponseHeaderOverride CONTENT_DISPOSITION
-
CONTENT_ENCODING
public static final ResponseHeaderOverride CONTENT_ENCODING
-
-
Method Detail
-
values
public static ResponseHeaderOverride[] 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 (ResponseHeaderOverride c : ResponseHeaderOverride.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResponseHeaderOverride valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getQueryParam
public java.lang.String getQueryParam()
-
-