Package com.amazonaws.services.s3.model
Enum ExtraMaterialsDescription.ConflictResolution
java.lang.Object
java.lang.Enum<ExtraMaterialsDescription.ConflictResolution>
com.amazonaws.services.s3.model.ExtraMaterialsDescription.ConflictResolution
- All Implemented Interfaces:
Serializable
,Comparable<ExtraMaterialsDescription.ConflictResolution>
,java.lang.constant.Constable
- Enclosing class:
ExtraMaterialsDescription
public static enum ExtraMaterialsDescription.ConflictResolution
extends Enum<ExtraMaterialsDescription.ConflictResolution>
Used to resolve conflicts when merging the additional material
description to the core material description.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionFail fast upon conflicting keys.To be overridden upon conflicting keys.Take precedence upon conflicting keys. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
FAIL_FAST
Fail fast upon conflicting keys. -
OVERRIDE
Take precedence upon conflicting keys. -
OVERRIDDEN
To be overridden upon conflicting keys.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-