Package org.gcube.datatransfer.resolver
Enum ConstantsResolver.CONTENT_DISPOSITION_VALUE
- java.lang.Object
-
- java.lang.Enum<ConstantsResolver.CONTENT_DISPOSITION_VALUE>
-
- org.gcube.datatransfer.resolver.ConstantsResolver.CONTENT_DISPOSITION_VALUE
-
- All Implemented Interfaces:
Serializable,Comparable<ConstantsResolver.CONTENT_DISPOSITION_VALUE>
- Enclosing class:
- ConstantsResolver
public static enum ConstantsResolver.CONTENT_DISPOSITION_VALUE extends Enum<ConstantsResolver.CONTENT_DISPOSITION_VALUE>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description attachmentinline
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ConstantsResolver.CONTENT_DISPOSITION_VALUEvalueOf(String name)Returns the enum constant of this type with the specified name.static ConstantsResolver.CONTENT_DISPOSITION_VALUE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
inline
public static final ConstantsResolver.CONTENT_DISPOSITION_VALUE inline
-
attachment
public static final ConstantsResolver.CONTENT_DISPOSITION_VALUE attachment
-
-
Method Detail
-
values
public static ConstantsResolver.CONTENT_DISPOSITION_VALUE[] 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 (ConstantsResolver.CONTENT_DISPOSITION_VALUE c : ConstantsResolver.CONTENT_DISPOSITION_VALUE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConstantsResolver.CONTENT_DISPOSITION_VALUE 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
-
-