Package app.ductape.sdk.database.types
Record Class SchemaTypes.TableDefinition
java.lang.Object
java.lang.Record
app.ductape.sdk.database.types.SchemaTypes.TableDefinition
- Enclosing class:
- SchemaTypes
public static record SchemaTypes.TableDefinition(String name, List<SchemaTypes.ColumnDefinition> columns, List<SchemaTypes.IndexDefinition> indexes, List<SchemaTypes.ConstraintDefinition> constraints, String comment)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionTableDefinition(String name, List<SchemaTypes.ColumnDefinition> columns, List<SchemaTypes.IndexDefinition> indexes, List<SchemaTypes.ConstraintDefinition> constraints, String comment) Creates an instance of aTableDefinitionrecord class. -
Method Summary
Modifier and TypeMethodDescriptioncolumns()Returns the value of thecolumnsrecord component.comment()Returns the value of thecommentrecord component.Returns the value of theconstraintsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.indexes()Returns the value of theindexesrecord component.name()Returns the value of thenamerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
TableDefinition
public TableDefinition(String name, List<SchemaTypes.ColumnDefinition> columns, List<SchemaTypes.IndexDefinition> indexes, List<SchemaTypes.ConstraintDefinition> constraints, String comment) Creates an instance of aTableDefinitionrecord class.- Parameters:
name- the value for thenamerecord componentcolumns- the value for thecolumnsrecord componentindexes- the value for theindexesrecord componentconstraints- the value for theconstraintsrecord componentcomment- the value for thecommentrecord 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
-
columns
Returns the value of thecolumnsrecord component.- Returns:
- the value of the
columnsrecord component
-
indexes
Returns the value of theindexesrecord component.- Returns:
- the value of the
indexesrecord component
-
constraints
Returns the value of theconstraintsrecord component.- Returns:
- the value of the
constraintsrecord component
-
comment
Returns the value of thecommentrecord component.- Returns:
- the value of the
commentrecord component
-