Enum Class TypeConverterExists
- All Implemented Interfaces:
Serializable, Comparable<TypeConverterExists>, Constable
Policy controlling what happens when a
TypeConverterRegistry receives a request to
register a type converter whose from-to type pair
is already registered.
This policy is set on the registry via
TypeConverterRegistry.setTypeConverterExists(TypeConverterExists) and determines whether
a duplicate registration replaces the existing converter (Override), is silently discarded
(Ignore), or raises a hard failure (Fail). The default behavior is Ignore.- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic TypeConverterExistsReturns the enum constant of this class with the specified name.static TypeConverterExists[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Override
Replace the existing type converter. -
Ignore
Keep the existing type converter and discard the new one. -
Fail
Throw an exception to signal a duplicate type converter.
-
-
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
-