Package io.jmix.dynmodel
Record Class DynamicModelMigration.UpdateUniqueConstraints
java.lang.Object
java.lang.Record
io.jmix.dynmodel.DynamicModelMigration.UpdateUniqueConstraints
- Record Components:
entityName- entity nameuniqueConstraints- normalized unique constraints
- All Implemented Interfaces:
DynamicModelMigration
- Enclosing interface:
DynamicModelMigration
public static record DynamicModelMigration.UpdateUniqueConstraints(String entityName, List<DynamicUniqueConstraintDefinition> uniqueConstraints)
extends Record
implements DynamicModelMigration
Updates dynamic entity unique constraints.
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.jmix.dynmodel.DynamicModelMigration
DynamicModelMigration.CreateAttribute, DynamicModelMigration.CreateEntity, DynamicModelMigration.DropAttribute, DynamicModelMigration.DropEntity, DynamicModelMigration.DropEnumeration, DynamicModelMigration.RemoveMessage, DynamicModelMigration.UpdateAttributeColumn, DynamicModelMigration.UpdateAttributeInstanceName, DynamicModelMigration.UpdateAttributeValidation, DynamicModelMigration.UpdateCalculatedAttribute, DynamicModelMigration.UpdateEntityValidation, DynamicModelMigration.UpdateMessage, DynamicModelMigration.UpdateUniqueConstraints, DynamicModelMigration.UpsertEnumeration -
Constructor Summary
ConstructorsConstructorDescriptionUpdateUniqueConstraints(String entityName, List<DynamicUniqueConstraintDefinition> uniqueConstraints) Creates an instance of aUpdateUniqueConstraintsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theentityNamerecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.toString()Returns a string representation of this record class.Returns the value of theuniqueConstraintsrecord component.
-
Constructor Details
-
UpdateUniqueConstraints
public UpdateUniqueConstraints(String entityName, List<DynamicUniqueConstraintDefinition> uniqueConstraints) Creates an instance of aUpdateUniqueConstraintsrecord class.- Parameters:
entityName- the value for theentityNamerecord componentuniqueConstraints- the value for theuniqueConstraintsrecord 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). -
entityName
Returns the value of theentityNamerecord component.- Returns:
- the value of the
entityNamerecord component
-
uniqueConstraints
Returns the value of theuniqueConstraintsrecord component.- Returns:
- the value of the
uniqueConstraintsrecord component
-