Record Class JsonTableExistsColumnDefinition
java.lang.Object
java.lang.Record
org.hibernate.sql.ast.tree.expression.JsonTableExistsColumnDefinition
- All Implemented Interfaces:
JsonTableColumnDefinition, SqlAstNode
public record JsonTableExistsColumnDefinition(String name, BasicType<Boolean> type, @Nullable String jsonPath, @Nullable JsonExistsErrorBehavior errorBehavior)
extends Record
implements JsonTableColumnDefinition
- Since:
- 7.0
-
Constructor Summary
ConstructorsConstructorDescriptionJsonTableExistsColumnDefinition(String name, BasicType<Boolean> type, @Nullable String jsonPath, @Nullable JsonExistsErrorBehavior errorBehavior) Creates an instance of aJsonTableExistsColumnDefinitionrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.@Nullable JsonExistsErrorBehaviorReturns 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.Methods inherited from interface JsonTableColumnDefinition
accept
-
Constructor Details
-
JsonTableExistsColumnDefinition
public JsonTableExistsColumnDefinition(String name, BasicType<Boolean> type, @Nullable String jsonPath, @Nullable JsonExistsErrorBehavior errorBehavior) Creates an instance of aJsonTableExistsColumnDefinitionrecord class.- Parameters:
name- the value for thenamerecord componenttype- the value for thetyperecord componentjsonPath- the value for thejsonPathrecord componenterrorBehavior- the value for theerrorBehaviorrecord component
-
-
Method Details
-
toString
-
hashCode
-
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
-
jsonPath
Returns the value of thejsonPathrecord component.- Returns:
- the value of the
jsonPathrecord component
-
errorBehavior
Returns the value of theerrorBehaviorrecord component.- Returns:
- the value of the
errorBehaviorrecord component
-