Enum Class TicketMode
- All Implemented Interfaces:
Serializable, Comparable<TicketMode>, Constable
How a
Ticket advances between actions.
MANUAL(default) — the curator triggers each next action explicitly (e.g. clicks "run preload" on the ticket detail page after the previous action finishes).AUTO— when a runner finishes with all targets inTicketTargetStatus.DONEand no recorded failures, the server schedules the next defined action automatically. The pipeline of "what comes next" is defined per-TicketType(e.g. PRELOAD → PROPOSE → REVIEW for a curation ticket).
- Author:
- paul
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic TicketModeReturns the enum constant of this class with the specified name.static TicketMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MANUAL
-
AUTO
-
-
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
-