Enum Class OutputJob.Type

java.lang.Object
java.lang.Enum<OutputJob.Type>
ch.tocco.nice2.outputcenter.api.OutputJob.Type
All Implemented Interfaces:
Serializable, Comparable<OutputJob.Type>, Constable
Enclosing interface:
OutputJob

public static enum OutputJob.Type extends Enum<OutputJob.Type>
  • Enum Constant Details

    • MANUAL

      public static final OutputJob.Type MANUAL
      The job has been created by a user explicitely. This also means, the `owner` attribute is set.
    • AUTO_TIME

      public static final OutputJob.Type AUTO_TIME
      The job has been created by a batch job. The `owner` attribute is not set in this case.
    • AUTO_DATA

      public static final OutputJob.Type AUTO_DATA
      The job has been created by a entity listener in response to some data changes.
    • MERGED

      public static final OutputJob.Type MERGED
      This job is a merged job and has OutputJobMergeItems associated.
  • Method Details

    • values

      public static OutputJob.Type[] 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 OutputJob.Type 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