- All Implemented Interfaces:
Serializable,Comparable<JSONOptions.DuplicateBehavior>,Constable
- Enclosing class:
- JSONOptions
An enum containing all supported behaviors for duplicate keys
- Since:
- 1.3.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionWraps duplicate values inside anarray, effectively treating them as if they were declared as oneOnly the last encountered value is significant, all previous occurrences are silently discardedThrows anexceptionwhen a key is encountered multiple times within the same object -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static JSONOptions.DuplicateBehavior[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNIQUE
Throws anexceptionwhen a key is encountered multiple times within the same object -
LAST_WINS
Only the last encountered value is significant, all previous occurrences are silently discarded -
DUPLICATE
Wraps duplicate values inside anarray, effectively treating them as if they were declared as one
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-