Enum Class Gate.Clause

java.lang.Object
java.lang.Enum<Gate.Clause>
org.horizon36596.simloop.loop.Gate.Clause
All Implemented Interfaces:
Serializable, Comparable<Gate.Clause>, Constable
Enclosing class:
Gate

public static enum Gate.Clause extends Enum<Gate.Clause>
The four §6 clauses, in the order a verdict reports them.
  • Enum Constant Details

    • TESTS_GREEN

      public static final Gate.Clause TESTS_GREEN
      The build's tests passed. Supplied by the caller — see Gate.SuppliedFacts.
    • ENVELOPE_HOLDS

      public static final Gate.Clause ENVELOPE_HOLDS
      No guardrail violated, and none left unchecked. Read from the candidate's score.
    • IMPROVES_ON_LAST_BEST

      public static final Gate.Clause IMPROVES_ON_LAST_BEST
      Strictly better than last-best, within one scenario and one objective.
    • REVIEW_PASSED

      public static final Gate.Clause REVIEW_PASSED
      An independent review approved the diff (R10). Supplied by the caller.
  • Method Details

    • values

      public static Gate.Clause[] 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 Gate.Clause 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