public static enum CSVImportStatus.State extends Enum<CSVImportStatus.State>
| Enum Constant and Description | 
|---|
COMPLETED  | 
ERROR  | 
RUNNING  | 
SCHEDULED  | 
| Modifier and Type | Method and 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. 
 | 
public static final CSVImportStatus.State SCHEDULED
public static final CSVImportStatus.State RUNNING
public static final CSVImportStatus.State COMPLETED
public static final CSVImportStatus.State ERROR
public static CSVImportStatus.State[] values()
for (CSVImportStatus.State c : CSVImportStatus.State.values()) System.out.println(c);
public static CSVImportStatus.State valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018 Nuxeo. All rights reserved.