Package org.nuxeo.ecm.csv.core
Enum CSVImportStatus.State
- java.lang.Object
-
- java.lang.Enum<CSVImportStatus.State>
-
- org.nuxeo.ecm.csv.core.CSVImportStatus.State
-
- All Implemented Interfaces:
Serializable
,Comparable<CSVImportStatus.State>
- Enclosing class:
- CSVImportStatus
public static enum CSVImportStatus.State extends Enum<CSVImportStatus.State>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CSVImportStatus.State
valueOf(String name)
Returns the enum constant of this type with the specified name.static CSVImportStatus.State[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SCHEDULED
public static final CSVImportStatus.State SCHEDULED
-
RUNNING
public static final CSVImportStatus.State RUNNING
-
COMPLETED
public static final CSVImportStatus.State COMPLETED
-
ERROR
public static final CSVImportStatus.State ERROR
- Since:
- 9.1
-
-
Method Detail
-
values
public static CSVImportStatus.State[] 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 (CSVImportStatus.State c : CSVImportStatus.State.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CSVImportStatus.State 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 nameNullPointerException
- if the argument is null
-
-