Record Class JsonQueryFunction.JsonQueryArguments
java.lang.Object
java.lang.Record
org.hibernate.dialect.function.json.JsonQueryFunction.JsonQueryArguments
- Enclosing class:
- JsonQueryFunction
protected static record JsonQueryFunction.JsonQueryArguments(Expression jsonDocument, Expression jsonPath, boolean isJsonType, @Nullable JsonPathPassingClause passingClause, @Nullable JsonQueryWrapMode wrapMode, @Nullable JsonQueryErrorBehavior errorBehavior, @Nullable JsonQueryEmptyBehavior emptyBehavior)
extends Record
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
JsonQueryArguments
(Expression jsonDocument, Expression jsonPath, boolean isJsonType, @Nullable JsonPathPassingClause passingClause, @Nullable JsonQueryWrapMode wrapMode, @Nullable JsonQueryErrorBehavior errorBehavior, @Nullable JsonQueryEmptyBehavior emptyBehavior) Creates an instance of aJsonQueryArguments
record class. -
Method Summary
Modifier and TypeMethodDescription@Nullable JsonQueryEmptyBehavior
Returns the value of theemptyBehavior
record component.final boolean
Indicates whether some other object is "equal to" this one.@Nullable JsonQueryErrorBehavior
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.final String
toString()
Returns a string representation of this record class.@Nullable JsonQueryWrapMode
wrapMode()
Returns the value of thewrapMode
record component.
-
Constructor Details
-
JsonQueryArguments
protected JsonQueryArguments(Expression jsonDocument, Expression jsonPath, boolean isJsonType, @Nullable JsonPathPassingClause passingClause, @Nullable JsonQueryWrapMode wrapMode, @Nullable JsonQueryErrorBehavior errorBehavior, @Nullable JsonQueryEmptyBehavior emptyBehavior) Creates an instance of aJsonQueryArguments
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 componentwrapMode
- the value for thewrapMode
record componenterrorBehavior
- the value for theerrorBehavior
record componentemptyBehavior
- the value for theemptyBehavior
record component
-
-
Method Details
-
extract
public static JsonQueryFunction.JsonQueryArguments 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
-
wrapMode
Returns the value of thewrapMode
record component.- Returns:
- the value of the
wrapMode
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
-