Class AutoBatchUpdateQuery.AutoBatchPostUpdateContext<E>

Type Parameters:
E - the entity type
All Implemented Interfaces:
PostUpdateContext<E>
Enclosing class:
AutoBatchUpdateQuery<ENTITY>

protected static class AutoBatchUpdateQuery.AutoBatchPostUpdateContext<E> extends AbstractPostUpdateContext<E>
A context class for post-update processing in batch update operations.

This class provides context information for the post-update phase of batch update operations.

  • Constructor Details

    • AutoBatchPostUpdateContext

      public AutoBatchPostUpdateContext(EntityType<E> entityType, Method method, Config config)
      Constructs a new instance.
      Parameters:
      entityType - the entity type
      method - the method
      config - the configuration
  • Method Details

    • isPropertyChanged

      public boolean isPropertyChanged(String propertyName)
      Indicates whether the specified property has been changed.

      This method always returns true for batch update operations.

      Parameters:
      propertyName - the property name
      Returns:
      true
      Throws:
      IllegalArgumentException - if the property is not defined in the entity
      See Also: