Enum Class DeploymentSpec.RevisionChange

java.lang.Object
java.lang.Enum<DeploymentSpec.RevisionChange>
com.yahoo.config.application.api.DeploymentSpec.RevisionChange
All Implemented Interfaces:
Serializable, Comparable<DeploymentSpec.RevisionChange>, Constable
Enclosing class:
DeploymentSpec

public static enum DeploymentSpec.RevisionChange extends Enum<DeploymentSpec.RevisionChange>
Determines when application changes deploy.
  • Enum Constant Details

    • whenClear

      public static final DeploymentSpec.RevisionChange whenClear
      Exclusive: Application changes always wait for already rolling application changes to complete.
    • whenFailing

      public static final DeploymentSpec.RevisionChange whenFailing
      Separate: Application changes wait for already rolling application changes to complete, unless they fail.
    • always

      public static final DeploymentSpec.RevisionChange always
      Latest: Application changes immediately supersede previous application changes, unless currently blocked.
  • Method Details

    • values

      public static DeploymentSpec.RevisionChange[] 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 DeploymentSpec.RevisionChange 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