Enum Constant Summary
Enum Constants
The import has some partial success/failure but the user indicated that it should be
cancelled
The entire import completed.
The import was hanging or encountered some error that prevented it from completing.
The import is not currently running but can be resumed later
The import is currently being processed
The user has uploaded the file and the import has been scheduled but it has not attempted
processing yet
Method Summary
All Methods Static Methods Concrete Methods
Returns the enum constant of this type with the specified name.
Returns an array containing the constants of this enum type, in
the order they are declared.
Enum Constant Details
REQUESTED
The user has uploaded the file and the import has been scheduled but it has not attempted
processing yet
PROCESSING
The import is currently being processed
CANCELLED
The import has some partial success/failure but the user indicated that it should be
cancelled
PAUSED
The import is not currently running but can be resumed later
FAILED
The import was hanging or encountered some error that prevented it from completing.
COMPLETED
The entire import completed. It may have completed with no errors, or completed with some
errors. For these details, the Import.errorCount
and Import.successCount
should be checked.
Method Details
values
Returns an array containing the constants of this enum type, in
the order they are declared.
Returns:
an array containing the constants of this enum type, in the order they are declared
valueOf
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