Record Class SchemaHelper.TableVerifyResult
java.lang.Object
java.lang.Record
cool.scx.jdbc.SchemaHelper.TableVerifyResult
- Enclosing class:
SchemaHelper
public static record SchemaHelper.TableVerifyResult(Column[] needAdd, Column[] needRemove, Column[] needChange)
extends Record
- Version:
- 0.0.1
- Author:
- scx567888
-
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
-
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). -
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
-