Enum Class Run.Status

java.lang.Object
java.lang.Enum<Run.Status>
com.amalgamasimulation.studies.core.Run.Status
All Implemented Interfaces:
Serializable, Comparable<Run.Status>, Constable
Enclosing class:
Run<S extends org.eclipse.emf.ecore.EObject>

public static enum Run.Status extends Enum<Run.Status>
  • Enum Constant Details

    • NOT_STARTED

      public static final Run.Status NOT_STARTED
      Run is created but not yet started. In this status:
    • IN_QUEUE

      public static final Run.Status IN_QUEUE
      Run has been queued for execution but hasn't started processing yet. In this status:
    • IN_PROGRESS

      public static final Run.Status IN_PROGRESS
      Run has been started by calling Run.run() method and is currently in progress. In this status:
    • COMPLETED

      public static final Run.Status COMPLETED
      Run has finished execution, either normally or with an error reported as part of the result. In this status:
    • ERROR

      public static final Run.Status ERROR
      Run was unable to complete due to an unexpected external exception not related to the experiment logic. A result has not been produced. In this status:
  • Method Details

    • values

      public static Run.Status[] 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 Run.Status 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
    • isFinal

      public boolean isFinal()