Enum build.PROGRESS

java.lang.Object
java.lang.Enum<build.PROGRESS>
name.moore.kevin.ze.game.build.PROGRESS
All Implemented Interfaces:
Serializable, Comparable<build.PROGRESS>, java.lang.constant.Constable
Enclosing class:
build

public static enum build.PROGRESS extends Enum<build.PROGRESS>
Status of this ticket.
  • Enum Constant Details

    • REQUEST

      public static final build.PROGRESS REQUEST
      All tickets start at REQUEST. ->BLOCKED once processed into properly filled-out tickets.
    • BLOCKED

      public static final build.PROGRESS BLOCKED
      Stays blocked until all prerequisites are COMPLETED. Moves to ->INPROGRESS once no outstanding prerequisites.
    • INPROGRESS

      public static final build.PROGRESS INPROGRESS
      The activity is actively happening. ->COMPLETED once build is done.
    • COMPLETED

      public static final build.PROGRESS COMPLETED
      Used once enough days manufacturing have elapsed and all installs done. Delivers/commissions the build and no longer in queue.
    • DEAD

      public static final build.PROGRESS DEAD
      Rarely used to kill off a ticket.
  • Constructor Details

    • PROGRESS

      private PROGRESS()
  • Method Details

    • values

      public static build.PROGRESS[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static build.PROGRESS valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null