Package org.horizon36596.simloop.loop
Enum Class Gate.Clause
- All Implemented Interfaces:
Serializable,Comparable<Gate.Clause>,Constable
- Enclosing class:
- Gate
The four §6 clauses, in the order a verdict reports them.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionNo guardrail violated, and none left unchecked.Strictly better than last-best, within one scenario and one objective.An independent review approved the diff (R10).The build's tests passed. -
Method Summary
Modifier and TypeMethodDescriptionstatic Gate.ClauseReturns the enum constant of this class with the specified name.static Gate.Clause[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TESTS_GREEN
The build's tests passed. Supplied by the caller — seeGate.SuppliedFacts. -
ENVELOPE_HOLDS
No guardrail violated, and none left unchecked. Read from the candidate's score. -
IMPROVES_ON_LAST_BEST
Strictly better than last-best, within one scenario and one objective. -
REVIEW_PASSED
An independent review approved the diff (R10). Supplied by the caller.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-