Enum ViewTransition

java.lang.Object
java.lang.Enum<ViewTransition>
com.blazebit.persistence.view.ViewTransition
All Implemented Interfaces:
Serializable, Comparable<ViewTransition>, java.lang.constant.Constable

public enum ViewTransition
extends Enum<ViewTransition>
The transition types for entity views.
Since:
1.4.0
Author:
Christian Beikov
See Also:
PostCommit, PostCommitListener, PostRollback, PostRollbackListener
  • Enum Constant Details

    • PERSIST

      public static final ViewTransition PERSIST
      The transition for entity views that were persisted.
    • UPDATE

      public static final ViewTransition UPDATE
      The transition for entity views that were updated.
    • REMOVE

      public static final ViewTransition REMOVE
      The transition for entity views that were removed.
  • Method Details

    • values

      public static ViewTransition[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static ViewTransition valueOf​(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null