Enum Class PreferredConstructorDiscoverer.Discoverers
java.lang.Object
java.lang.Enum<PreferredConstructorDiscoverer.Discoverers>
org.springframework.data.mapping.model.PreferredConstructorDiscoverer.Discoverers
- All Implemented Interfaces:
Serializable
,Comparable<PreferredConstructorDiscoverer.Discoverers>
,Constable
- Enclosing interface:
- PreferredConstructorDiscoverer
public static enum PreferredConstructorDiscoverer.Discoverers
extends Enum<PreferredConstructorDiscoverer.Discoverers>
Helper class to find a
PreferredConstructor
.- Since:
- 2.0
- Author:
- Oliver Gierke, Christoph Strobl, Roman Rodov, Mark Paluch
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDiscovers aPreferredConstructor
for Java types.Discovers aPreferredConstructor
for Kotlin types.Discovers the canonical constructor for Java Record types. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DEFAULT
Discovers aPreferredConstructor
for Java types. -
RECORD
Discovers the canonical constructor for Java Record types.- Since:
- 3.0
-
KOTLIN
Discovers aPreferredConstructor
for Kotlin types.
-
-
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
-