Enum Class MCRJobState

java.lang.Object
java.lang.Enum<MCRJobState>
org.mycore.iview2.services.MCRJobState
All Implemented Interfaces:
Serializable, Comparable<MCRJobState>, java.lang.constant.Constable

public enum MCRJobState extends Enum<MCRJobState>
Represents the status of tiling jobs
Author:
Thomas Scheffler (yagee)
  • Enum Constant Details

    • NEW

      public static final MCRJobState NEW
      job is added to tiling queue
    • PROCESSING

      public static final MCRJobState PROCESSING
      job is currently being processed by an image tiler
    • FINISHED

      public static final MCRJobState FINISHED
      image tiling process is complete
    • ERROR

      public static final MCRJobState ERROR
      image tiling process is complete
  • Method Details

    • values

      public static MCRJobState[] 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 MCRJobState 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
    • notCompleteStates

      public static Set<MCRJobState> notCompleteStates()
    • completeStates

      public static Set<MCRJobState> completeStates()
    • toChar

      public char toChar()
      returns character representing the status
      Returns:
      returned characters depending on current state
      NEW 'n'
      PROCESSING 'p'
      FINISHED 'f'
      ERROR 'e'