Record Class JsonValueFunction.JsonValueArguments
java.lang.Object
java.lang.Record
org.hibernate.dialect.function.json.JsonValueFunction.JsonValueArguments
- Enclosing class:
- JsonValueFunction
protected static record JsonValueFunction.JsonValueArguments(Expression jsonDocument, Expression jsonPath, boolean isJsonType, @Nullable JsonPathPassingClause passingClause, @Nullable CastTarget returningType, @Nullable JsonValueErrorBehavior errorBehavior, @Nullable JsonValueEmptyBehavior emptyBehavior)
extends Record
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
JsonValueArguments
(Expression jsonDocument, Expression jsonPath, boolean isJsonType, @Nullable JsonPathPassingClause passingClause, @Nullable CastTarget returningType, @Nullable JsonValueErrorBehavior errorBehavior, @Nullable JsonValueEmptyBehavior emptyBehavior) Creates an instance of aJsonValueArguments
record class. -
Method Summary
Modifier and TypeMethodDescription@Nullable JsonValueEmptyBehavior
Returns the value of theemptyBehavior
record component.final boolean
Indicates whether some other object is "equal to" this one.@Nullable JsonValueErrorBehavior
Returns the value of theerrorBehavior
record component.extract
(List<? extends SqlAstNode> sqlAstArguments) final int
hashCode()
Returns a hash code value for this object.boolean
Returns the value of theisJsonType
record component.Returns the value of thejsonDocument
record component.jsonPath()
Returns the value of thejsonPath
record component.@Nullable JsonPathPassingClause
Returns the value of thepassingClause
record component.@Nullable CastTarget
Returns the value of thereturningType
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
JsonValueArguments
protected JsonValueArguments(Expression jsonDocument, Expression jsonPath, boolean isJsonType, @Nullable JsonPathPassingClause passingClause, @Nullable CastTarget returningType, @Nullable JsonValueErrorBehavior errorBehavior, @Nullable JsonValueEmptyBehavior emptyBehavior) Creates an instance of aJsonValueArguments
record class.- Parameters:
jsonDocument
- the value for thejsonDocument
record componentjsonPath
- the value for thejsonPath
record componentisJsonType
- the value for theisJsonType
record componentpassingClause
- the value for thepassingClause
record componentreturningType
- the value for thereturningType
record componenterrorBehavior
- the value for theerrorBehavior
record componentemptyBehavior
- the value for theemptyBehavior
record component
-
-
Method Details
-
extract
public static JsonValueFunction.JsonValueArguments 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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
jsonDocument
Returns the value of thejsonDocument
record component.- Returns:
- the value of the
jsonDocument
record component
-
jsonPath
Returns the value of thejsonPath
record component.- Returns:
- the value of the
jsonPath
record component
-
isJsonType
public boolean isJsonType()Returns the value of theisJsonType
record component.- Returns:
- the value of the
isJsonType
record component
-
passingClause
Returns the value of thepassingClause
record component.- Returns:
- the value of the
passingClause
record component
-
returningType
Returns the value of thereturningType
record component.- Returns:
- the value of the
returningType
record component
-
errorBehavior
Returns the value of theerrorBehavior
record component.- Returns:
- the value of the
errorBehavior
record component
-
emptyBehavior
Returns the value of theemptyBehavior
record component.- Returns:
- the value of the
emptyBehavior
record component
-