Package dk.mada.jaxrs.model
Record Class SubtypeSelector
java.lang.Object
java.lang.Record
dk.mada.jaxrs.model.SubtypeSelector
- Record Components:
propertyName
- the name of the property holding the type selectortypeMapping
- the mapping from names to types
public record SubtypeSelector(String propertyName, Map<String,Reference> typeMapping)
extends Record
Sub-type selection information.
-
Constructor Summary
ConstructorsConstructorDescriptionSubtypeSelector
(String propertyName, Map<String, Reference> typeMapping) Creates an instance of aSubtypeSelector
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of thepropertyName
record component.final String
toString()
Returns a string representation of this record class.Returns the value of thetypeMapping
record component.
-
Constructor Details
-
SubtypeSelector
Creates an instance of aSubtypeSelector
record class.- Parameters:
propertyName
- the value for thepropertyName
record componenttypeMapping
- the value for thetypeMapping
record component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
propertyName
Returns the value of thepropertyName
record component.- Returns:
- the value of the
propertyName
record component
-
typeMapping
Returns the value of thetypeMapping
record component.- Returns:
- the value of the
typeMapping
record component
-