Enum JOB_STATUS

    • Enum Constant Detail

      • NOT_STARTED

        public static final JOB_STATUS NOT_STARTED
      • INITIALIZING

        public static final JOB_STATUS INITIALIZING
      • IMPORTING_CORPUS_STRUCTURE

        public static final JOB_STATUS IMPORTING_CORPUS_STRUCTURE
      • IMPORTING_DOCUMENT_STRUCTURE

        public static final JOB_STATUS IMPORTING_DOCUMENT_STRUCTURE
      • ENDED_WITH_ERRORS

        public static final JOB_STATUS ENDED_WITH_ERRORS
    • Method Detail

      • values

        public static JOB_STATUS[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (JOB_STATUS c : JOB_STATUS.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static JOB_STATUS 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