Record Class AdditionalParameterBinding
java.lang.Object
java.lang.Record
io.micronaut.data.model.query.builder.AdditionalParameterBinding
- Record Components:
bindingContext
- The binding contextname
- The property name
- All Implemented Interfaces:
QueryParameterBinding
@Internal
public record AdditionalParameterBinding(BindingParameter.BindingContext bindingContext, String name)
extends Record
implements QueryParameterBinding
The
QueryParameterBinding
of the additional parameter.- Since:
- 4.9.0
- Author:
- Denis Stepanov
-
Constructor Summary
ConstructorDescriptionAdditionalParameterBinding
(BindingParameter.BindingContext bindingContext, String name) Creates an instance of aAdditionalParameterBinding
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thebindingContext
record component.final boolean
Indicates whether some other object is "equal to" this one.getKey()
getName()
final int
hashCode()
Returns a hash code value for this object.name()
Returns the value of thename
record component.final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface io.micronaut.data.model.query.builder.QueryParameterBinding
getConverterClassName, getParameterBindingPath, getParameterIndex, getPropertyPath, getRole, getTableAlias, getValue, isAutoPopulated, isExpandable, isExpression, isRequiresPreviousPopulatedValue
-
Constructor Details
-
AdditionalParameterBinding
Creates an instance of aAdditionalParameterBinding
record class.- Parameters:
bindingContext
- the value for thebindingContext
record componentname
- the value for thename
record component
-
-
Method Details
-
getName
- Specified by:
getName
in interfaceQueryParameterBinding
- Returns:
- The parameter name.
-
getKey
- Specified by:
getKey
in interfaceQueryParameterBinding
- Returns:
- The key represents the placeholder value in the query (usually it's ?).
-
getDataType
- Specified by:
getDataType
in interfaceQueryParameterBinding
- Returns:
- The data type
-
getJsonDataType
- Specified by:
getJsonDataType
in interfaceQueryParameterBinding
- Returns:
- The json representation data type if getDataType is
DataType.JSON
and is annotated withJsonRepresentation
annotation
-
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)
. -
bindingContext
Returns the value of thebindingContext
record component.- Returns:
- the value of the
bindingContext
record component
-
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-