Enum ImportedLineStatus

    • Enum Constant Detail

      • VALIDATION_ERROR

        public static final ImportedLineStatus VALIDATION_ERROR
        The line has validation errors.
      • SKIPPED

        public static final ImportedLineStatus SKIPPED
        The line has been marked as skipped to prevent it from being imported.
      • IMPORT_ERROR

        public static final ImportedLineStatus IMPORT_ERROR
        There was an attempt to import this line but some errors were found at this moment.
      • IMPORTED

        public static final ImportedLineStatus IMPORTED
        The line has been imported successfully.
    • Method Detail

      • values

        public static ImportedLineStatus[] 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 (ImportedLineStatus c : ImportedLineStatus.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

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