Package org.flywaydb.verb.migrate
Record Class MigrationExecutionGroup
java.lang.Object
java.lang.Record
org.flywaydb.verb.migrate.MigrationExecutionGroup
-
Constructor Summary
ConstructorsConstructorDescriptionMigrationExecutionGroup(List<org.flywaydb.core.api.MigrationInfo> migrations, boolean shouldExecuteInTransaction) Creates an instance of aMigrationExecutionGrouprecord 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.List<org.flywaydb.core.api.MigrationInfo> Returns the value of themigrationsrecord component.booleanReturns the value of theshouldExecuteInTransactionrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
MigrationExecutionGroup
public MigrationExecutionGroup(List<org.flywaydb.core.api.MigrationInfo> migrations, boolean shouldExecuteInTransaction) Creates an instance of aMigrationExecutionGrouprecord class.- Parameters:
migrations- the value for themigrationsrecord componentshouldExecuteInTransaction- the value for theshouldExecuteInTransactionrecord 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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
migrations
Returns the value of themigrationsrecord component.- Returns:
- the value of the
migrationsrecord component
-
shouldExecuteInTransaction
public boolean shouldExecuteInTransaction()Returns the value of theshouldExecuteInTransactionrecord component.- Returns:
- the value of the
shouldExecuteInTransactionrecord component
-