Record Class JsonTableFunction.JsonTableArguments
java.lang.Object
java.lang.Record
org.hibernate.dialect.function.json.JsonTableFunction.JsonTableArguments
- Enclosing class:
- JsonTableFunction
protected static record JsonTableFunction.JsonTableArguments(Expression jsonDocument, @Nullable Expression jsonPath, boolean isJsonType, @Nullable JsonPathPassingClause passingClause, @Nullable JsonTableErrorBehavior errorBehavior, JsonTableColumnsClause columnsClause)
extends Record
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
JsonTableArguments
(Expression jsonDocument, @Nullable Expression jsonPath, boolean isJsonType, @Nullable JsonPathPassingClause passingClause, @Nullable JsonTableErrorBehavior errorBehavior, JsonTableColumnsClause columnsClause) Creates an instance of aJsonTableArguments
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecolumnsClause
record component.final boolean
Indicates whether some other object is "equal to" this one.@Nullable JsonTableErrorBehavior
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.@Nullable Expression
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.
-
Constructor Details
-
JsonTableArguments
protected JsonTableArguments(Expression jsonDocument, @Nullable Expression jsonPath, boolean isJsonType, @Nullable JsonPathPassingClause passingClause, @Nullable JsonTableErrorBehavior errorBehavior, JsonTableColumnsClause columnsClause) Creates an instance of aJsonTableArguments
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 componenterrorBehavior
- the value for theerrorBehavior
record componentcolumnsClause
- the value for thecolumnsClause
record component
-
-
Method Details
-
extract
public static JsonTableFunction.JsonTableArguments 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
-
errorBehavior
Returns the value of theerrorBehavior
record component.- Returns:
- the value of the
errorBehavior
record component
-
columnsClause
Returns the value of thecolumnsClause
record component.- Returns:
- the value of the
columnsClause
record component
-