public enum ImportStatus extends Enum<ImportStatus>
| Enum Constant and Description |
|---|
CHECKING
When the import parameters are under checking.
|
COMPLETED
When the import is completed.
|
CONFIGURING
When the user is setting the import parameters
|
CREATED
When the GUI ask for a ticket
|
FAILED
When the import is failed.
|
IMPORTING
When the service is importing the csv lines.
|
TRANSMITTING
When the file is sent to the service.
|
UPLOAD_COMPLETE
When the upload is completed.
|
UPLOADING
When the browser is sending the file
|
| Modifier and Type | Method and Description |
|---|---|
static ImportStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImportStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImportStatus CREATED
public static final ImportStatus UPLOADING
public static final ImportStatus UPLOAD_COMPLETE
public static final ImportStatus CONFIGURING
public static final ImportStatus CHECKING
public static final ImportStatus TRANSMITTING
public static final ImportStatus IMPORTING
public static final ImportStatus COMPLETED
public static final ImportStatus FAILED
public static ImportStatus[] values()
for (ImportStatus c : ImportStatus.values()) System.out.println(c);
public static ImportStatus 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 © 2014. All Rights Reserved.