Interface BulkOperation.Builder

    • Method Detail

      • persist

        <ENTITY> BulkOperation.Builder.Persist<ENTITY> persist​(Manager<ENTITY> manager)
        Creates and returns a new Persist builder that can be used to build a Persist Operation.
        Type Parameters:
        ENTITY - type
        Parameters:
        manager - to use when persisting entities
        Returns:
        Persist builder that can be used to build a Persist Operation
      • update

        <ENTITY> BulkOperation.Builder.Update<ENTITY> update​(Manager<ENTITY> manager)
        Creates and returns a new Update builder that can be used to build an Update Operation.
        Type Parameters:
        ENTITY - type
        Parameters:
        manager - to use when updating entities
        Returns:
        Update builder that can be used to build an Update Operation
      • build

        BulkOperation build()
        Creates and returns a new immutable BulkOperation comprising all the steps defined by the Builder.
        Returns:
        a new immutable BulkOperation comprising all the steps defined by the Builder