Enum Class Phase.Transition

java.lang.Object
java.lang.Enum<Phase.Transition>
org.eclipse.emf.cdo.server.db.evolution.phased.Phase.Transition
All Implemented Interfaces:
Serializable, Comparable<Phase.Transition>, java.lang.constant.Constable
Enclosing class:
Phase

public static enum Phase.Transition extends Enum<Phase.Transition>
The possible transitions between phases.

There are four possible transitions:

  • SameTrigger: The next phase is triggered by the same trigger as the current phase.
  • NextTrigger: The next phase is triggered by the next trigger in the sequence.
  • StoreRestart: The next phase requires a restart of the DB store.
  • RepositoryRestart: The next phase requires a restart of the repository.
Since:
4.14
Author:
Eike Stepper
No Implement
This package is currently considered provisional.
No Extend
This package is currently considered provisional.
No Reference
This package is currently considered provisional.
  • Enum Constant Details

    • SameTrigger

      public static final Phase.Transition SameTrigger
      The next phase is triggered by the same trigger as the current phase.
    • NextTrigger

      public static final Phase.Transition NextTrigger
      The next phase is triggered by the next trigger in the sequence.
    • StoreRestart

      public static final Phase.Transition StoreRestart
      The next phase requires a restart of the DB store.
    • RepositoryRestart

      public static final Phase.Transition RepositoryRestart
      The next phase requires a restart of the repository.
  • Method Details

    • values

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

      public static Phase.Transition valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null