Package sonia.scm

Enum Class Stage

All Implemented Interfaces:
Serializable, Comparable<Stage>, Constable

public enum Stage extends Enum<Stage>
The constants in this class represent the current state of the running SCM_Manager instance. The stage can be queried by calling SCMContextProvider.getStage().
Since:
1.12
  • Enum Constant Details

    • DEVELOPMENT

      public static final Stage DEVELOPMENT
      This value indicates SCM-Manager is right now in development.
    • PRODUCTION

      public static final Stage PRODUCTION
      This value indicates SCM-Manager is right now productive.
    • TESTING

      public static final Stage TESTING
      This value indicates SCM-Manager is right now in development but specifically configured for testing.
      Since:
      2.47.0
  • Method Details

    • values

      public static Stage[] 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 Stage 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
    • getInjectionStage

      public com.google.inject.Stage getInjectionStage()
      Returns the injection stage
      Since:
      2.0.0