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 aJsonTableQueryColumnDefinitionrecord class. -
Method Summary
Modifier and TypeMethodDescription@Nullable JsonQueryEmptyBehaviorReturns the value of theemptyBehaviorrecord component.final booleanIndicates whether some other object is "equal to" this one.@Nullable JsonQueryErrorBehaviorReturns the value of theerrorBehaviorrecord component.final inthashCode()Returns a hash code value for this object.@Nullable StringjsonPath()Returns the value of thejsonPathrecord component.name()Returns the value of thenamerecord component.final StringtoString()Returns a string representation of this record class.type()Returns the value of thetyperecord component.@Nullable JsonQueryWrapModewrapMode()Returns the value of thewrapModerecord component.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods 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 aJsonTableQueryColumnDefinitionrecord class.- Parameters:
name- the value for thenamerecord componenttype- the value for thetyperecord componentjsonPath- the value for thejsonPathrecord componentwrapMode- the value for thewrapModerecord componenterrorBehavior- the value for theerrorBehaviorrecord componentemptyBehavior- the value for theemptyBehaviorrecord 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 thenamerecord component.- Returns:
- the value of the
namerecord component
-
type
Returns the value of thetyperecord component.- Returns:
- the value of the
typerecord component
-
jsonPath
Returns the value of thejsonPathrecord component.- Returns:
- the value of the
jsonPathrecord component
-
wrapMode
Returns the value of thewrapModerecord component.- Returns:
- the value of the
wrapModerecord component
-
errorBehavior
Returns the value of theerrorBehaviorrecord component.- Returns:
- the value of the
errorBehaviorrecord component
-
emptyBehavior
Returns the value of theemptyBehaviorrecord component.- Returns:
- the value of the
emptyBehaviorrecord component
-