public enum ImportedLineStatus extends java.lang.Enum<ImportedLineStatus>
| Enum Constant and Description |
|---|
IMPORT_ERROR
There was an attempt to import this line but some errors were found
at this moment.
|
IMPORTED
The line has been imported successfully.
|
INVALID
The line doesn't have the proper amount of values or another strange error.
|
READY
The line is ready to be imported.
|
SKIPPED
The line has been marked as skipped to prevent it from being imported.
|
VALIDATION_ERROR
The line has validation errors.
|
| Modifier and Type | Method and Description |
|---|---|
static ImportedLineStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImportedLineStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImportedLineStatus READY
public static final ImportedLineStatus VALIDATION_ERROR
public static final ImportedLineStatus INVALID
public static final ImportedLineStatus SKIPPED
public static final ImportedLineStatus IMPORT_ERROR
public static final ImportedLineStatus IMPORTED
public static ImportedLineStatus[] values()
for (ImportedLineStatus c : ImportedLineStatus.values()) System.out.println(c);
public static ImportedLineStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null