Uses of Enum
com.blazebit.persistence.view.ViewTransition
Packages that use ViewTransition
Package
Description
Entity-View extension for the Blaze-Persistence API.
Entity-View extension metamodel.
SPI for implementers of the Blaze-Persistence Entity-View extension.
-
Uses of ViewTransition in com.blazebit.persistence.view
Methods in com.blazebit.persistence.view that return ViewTransitionModifier and TypeMethodDescriptionstatic ViewTransitionReturns the enum constant of this type with the specified name.static ViewTransition[]ViewTransition.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.blazebit.persistence.view with parameters of type ViewTransitionModifier and TypeMethodDescriptionvoidViewTransitionListener.call(T view, ViewTransition transition) A callback that is invoked for a view.voidPostCommitListener.postCommit(EntityViewManager entityViewManager, javax.persistence.EntityManager entityManager, T view, ViewTransition transition) A callback that is invoked after the flush for given view was committed.voidPostRollbackListener.postRollback(EntityViewManager entityViewManager, javax.persistence.EntityManager entityManager, T view, ViewTransition transition) A callback that is invoked after the flush for given view was rolled back.Method parameters in com.blazebit.persistence.view with type arguments of type ViewTransitionModifier and TypeMethodDescription<T,E> FlushOperationBuilder FlushOperationBuilder.onPostCommit(Class<T> entityViewClass, Class<E> entityClass, Set<ViewTransition> viewTransitions, PostCommitListener<T> listener) Registers the given listener to the current flush operation.<T,E> FlushOperationBuilder FlushOperationBuilder.onPostCommit(Class<T> entityViewClass, Class<E> entityClass, Set<ViewTransition> viewTransitions, ViewListener<T> listener) Registers the given listener to the current flush operation.<T,E> FlushOperationBuilder FlushOperationBuilder.onPostCommit(Class<T> entityViewClass, Class<E> entityClass, Set<ViewTransition> viewTransitions, ViewTransitionListener<T> listener) Registers the given listener to the current flush operation.FlushOperationBuilder.onPostCommit(Class<T> entityViewClass, Set<ViewTransition> viewTransitions, PostCommitListener<T> listener) Registers the given listener to the current flush operation.FlushOperationBuilder.onPostCommit(Class<T> entityViewClass, Set<ViewTransition> viewTransitions, ViewListener<T> listener) Registers the given listener to the current flush operation.FlushOperationBuilder.onPostCommit(Class<T> entityViewClass, Set<ViewTransition> viewTransitions, ViewTransitionListener<T> listener) Registers the given listener to the current flush operation.FlushOperationBuilder.onPostCommit(Set<ViewTransition> viewTransitions, PostCommitListener<?> listener) Registers the given listener to the current flush operation.<T,E> FlushOperationBuilder FlushOperationBuilder.onPostRollback(Class<T> entityViewClass, Class<E> entityClass, Set<ViewTransition> viewTransitions, PostRollbackListener<T> listener) Registers the given listener to the current flush operation.<T,E> FlushOperationBuilder FlushOperationBuilder.onPostRollback(Class<T> entityViewClass, Class<E> entityClass, Set<ViewTransition> viewTransitions, ViewListener<T> listener) Registers the given listener to the current flush operation.<T,E> FlushOperationBuilder FlushOperationBuilder.onPostRollback(Class<T> entityViewClass, Class<E> entityClass, Set<ViewTransition> viewTransitions, ViewTransitionListener<T> listener) Registers the given listener to the current flush operation.FlushOperationBuilder.onPostRollback(Class<T> entityViewClass, Set<ViewTransition> viewTransitions, PostRollbackListener<T> listener) Registers the given listener to the current flush operation.FlushOperationBuilder.onPostRollback(Class<T> entityViewClass, Set<ViewTransition> viewTransitions, ViewListener<T> listener) Registers the given listener to the current flush operation.FlushOperationBuilder.onPostRollback(Class<T> entityViewClass, Set<ViewTransition> viewTransitions, ViewTransitionListener<T> listener) Registers the given listener to the current flush operation.FlushOperationBuilder.onPostRollback(Set<ViewTransition> viewTransitions, PostRollbackListener<?> listener) Registers the given listener to the current flush operation. -
Uses of ViewTransition in com.blazebit.persistence.view.metamodel
Methods in com.blazebit.persistence.view.metamodel that return types with arguments of type ViewTransitionModifier and TypeMethodDescriptionManagedViewType.getPostCommitTransitions()Returns the post commit transitions.ManagedViewType.getPostRollbackTransitions()Returns the post rollback transitions. -
Uses of ViewTransition in com.blazebit.persistence.view.spi
Methods in com.blazebit.persistence.view.spi that return ViewTransitionModifier and TypeMethodDescriptionEntityViewMapping.getPostCommitTransitions()Returns the post commit view transitions ornullif there is none.EntityViewMapping.getPostRollbackTransitions()Returns the post rollback view transitions ornullif there is none.Methods in com.blazebit.persistence.view.spi with parameters of type ViewTransitionModifier and TypeMethodDescriptionvoidEntityViewMapping.setPostCommitTransitions(ViewTransition[] viewTransitions) Sets the post commit view transitions.voidEntityViewMapping.setPostRollbackTransitions(ViewTransition[] viewTransitions) Sets the post rollback view transitions.