Record Class JsonObjectAggFunction.JsonObjectAggArguments
java.lang.Object
java.lang.Record
org.hibernate.dialect.function.json.JsonObjectAggFunction.JsonObjectAggArguments
- Enclosing class:
- JsonObjectAggFunction
protected static record JsonObjectAggFunction.JsonObjectAggArguments(Expression key, Expression value, @Nullable JsonNullBehavior nullBehavior, @Nullable JsonObjectAggUniqueKeysBehavior uniqueKeysBehavior)
extends Record
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
JsonObjectAggArguments
(Expression key, Expression value, @Nullable JsonNullBehavior nullBehavior, @Nullable JsonObjectAggUniqueKeysBehavior uniqueKeysBehavior) Creates an instance of aJsonObjectAggArguments
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.extract
(List<? extends SqlAstNode> sqlAstArguments) final int
hashCode()
Returns a hash code value for this object.key()
Returns the value of thekey
record component.@Nullable JsonNullBehavior
Returns the value of thenullBehavior
record component.final String
toString()
Returns a string representation of this record class.@Nullable JsonObjectAggUniqueKeysBehavior
Returns the value of theuniqueKeysBehavior
record component.value()
Returns the value of thevalue
record component.
-
Constructor Details
-
JsonObjectAggArguments
protected JsonObjectAggArguments(Expression key, Expression value, @Nullable JsonNullBehavior nullBehavior, @Nullable JsonObjectAggUniqueKeysBehavior uniqueKeysBehavior) Creates an instance of aJsonObjectAggArguments
record class.- Parameters:
key
- the value for thekey
record componentvalue
- the value for thevalue
record componentnullBehavior
- the value for thenullBehavior
record componentuniqueKeysBehavior
- the value for theuniqueKeysBehavior
record component
-
-
Method Details
-
extract
public static JsonObjectAggFunction.JsonObjectAggArguments extract(List<? extends SqlAstNode> sqlAstArguments) -
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)
. -
key
Returns the value of thekey
record component.- Returns:
- the value of the
key
record component
-
value
Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-
nullBehavior
Returns the value of thenullBehavior
record component.- Returns:
- the value of the
nullBehavior
record component
-
uniqueKeysBehavior
Returns the value of theuniqueKeysBehavior
record component.- Returns:
- the value of the
uniqueKeysBehavior
record component
-