Package cool.scx.jdbc.meta_data
Record Class SchemaHelper.TableVerifyResult
java.lang.Object
java.lang.Record
cool.scx.jdbc.meta_data.SchemaHelper.TableVerifyResult
- Enclosing class:
SchemaHelper
-
Constructor Summary
ConstructorsConstructorDescriptionTableVerifyResult(Column[] needAdd, Column[] needRemove, Column[] needChange) Creates an instance of aTableVerifyResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Column[]needAdd()Returns the value of theneedAddrecord component.Column[]Returns the value of theneedChangerecord component.Column[]Returns the value of theneedRemoverecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
TableVerifyResult
Creates an instance of aTableVerifyResultrecord class.- Parameters:
needAdd- the value for theneedAddrecord componentneedRemove- the value for theneedRemoverecord componentneedChange- the value for theneedChangerecord 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). -
needAdd
Returns the value of theneedAddrecord component.- Returns:
- the value of the
needAddrecord component
-
needRemove
Returns the value of theneedRemoverecord component.- Returns:
- the value of the
needRemoverecord component
-
needChange
Returns the value of theneedChangerecord component.- Returns:
- the value of the
needChangerecord component
-