Record Class JsonTableQueryColumnDefinition
java.lang.Object
java.lang.Record
org.hibernate.sql.ast.tree.expression.JsonTableQueryColumnDefinition
- All Implemented Interfaces:
JsonTableColumnDefinition
,SqlAstNode
public record JsonTableQueryColumnDefinition(String name, BasicType<String> type, @Nullable String jsonPath, @Nullable JsonQueryWrapMode wrapMode, @Nullable JsonQueryErrorBehavior errorBehavior, @Nullable JsonQueryEmptyBehavior emptyBehavior)
extends Record
implements JsonTableColumnDefinition
- Since:
- 7.0
-
Constructor Summary
ConstructorsConstructorDescriptionJsonTableQueryColumnDefinition
(String name, BasicType<String> type, @Nullable String jsonPath, @Nullable JsonQueryWrapMode wrapMode, @Nullable JsonQueryErrorBehavior errorBehavior, @Nullable JsonQueryEmptyBehavior emptyBehavior) Creates an instance of aJsonTableQueryColumnDefinition
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.final int
hashCode()
Returns a hash code value for this object.@Nullable String
jsonPath()
Returns the value of thejsonPath
record component.name()
Returns the value of thename
record component.final String
toString()
Returns a string representation of this record class.type()
Returns the value of thetype
record component.@Nullable JsonQueryWrapMode
wrapMode()
Returns the value of thewrapMode
record component.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.hibernate.sql.ast.tree.expression.JsonTableColumnDefinition
accept
-
Constructor Details
-
JsonTableQueryColumnDefinition
public JsonTableQueryColumnDefinition(String name, BasicType<String> type, @Nullable String jsonPath, @Nullable JsonQueryWrapMode wrapMode, @Nullable JsonQueryErrorBehavior errorBehavior, @Nullable JsonQueryEmptyBehavior emptyBehavior) Creates an instance of aJsonTableQueryColumnDefinition
record class.- Parameters:
name
- the value for thename
record componenttype
- the value for thetype
record componentjsonPath
- the value for thejsonPath
record componentwrapMode
- the value for thewrapMode
record componenterrorBehavior
- the value for theerrorBehavior
record componentemptyBehavior
- the value for theemptyBehavior
record component
-
-
Method Details
-
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)
. -
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
type
Returns the value of thetype
record component.- Returns:
- the value of the
type
record component
-
jsonPath
Returns the value of thejsonPath
record component.- Returns:
- the value of the
jsonPath
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
-