Record Class JsonTableValueColumnDefinition
java.lang.Object
java.lang.Record
org.hibernate.sql.ast.tree.expression.JsonTableValueColumnDefinition
- All Implemented Interfaces:
JsonTableColumnDefinition
,SqlAstNode
public record JsonTableValueColumnDefinition(String name, CastTarget type, @Nullable String jsonPath, @Nullable JsonValueErrorBehavior errorBehavior, @Nullable JsonValueEmptyBehavior emptyBehavior)
extends Record
implements JsonTableColumnDefinition
- Since:
- 7.0
-
Constructor Summary
ConstructorsConstructorDescriptionJsonTableValueColumnDefinition
(String name, CastTarget type, @Nullable String jsonPath, @Nullable JsonValueErrorBehavior errorBehavior, @Nullable JsonValueEmptyBehavior emptyBehavior) Creates an instance of aJsonTableValueColumnDefinition
record class. -
Method Summary
Modifier and TypeMethodDescription@Nullable JsonValueEmptyBehavior
Returns the value of theemptyBehavior
record component.final boolean
Indicates whether some other object is "equal to" this one.@Nullable JsonValueErrorBehavior
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.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
-
JsonTableValueColumnDefinition
public JsonTableValueColumnDefinition(String name, CastTarget type, @Nullable String jsonPath, @Nullable JsonValueErrorBehavior errorBehavior, @Nullable JsonValueEmptyBehavior emptyBehavior) Creates an instance of aJsonTableValueColumnDefinition
record class.- Parameters:
name
- the value for thename
record componenttype
- the value for thetype
record componentjsonPath
- the value for thejsonPath
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
-
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
-