public enum CentraSiteImporterStatus extends java.lang.Enum<CentraSiteImporterStatus>
CentraSiteImporterCallback
to know the importer's progress.Enum Constant and Description |
---|
IMPORT_READY
Indicates that the collection of objects returned by the importer are
ready to be saved.
|
IMPORTED_SUCCESSFULLY
Indicates that the import was successful.
|
INITIALIZED_FOR_IMPORT
Indicates that the importer is initialized and ready for importing files.
|
INVALID_FILE
Indicates that the imported file is invalid according to the specification/standard.
|
MISSING_REFERENCE
Indicates that the imported file has a missing reference.
|
PARSING
Indicates that the importer is currently parsing the given file.
|
PERMISSION_DENIED
Indicates that the import URL cannot be accessed due to permission problem.
|
Modifier and Type | Method and Description |
---|---|
static CentraSiteImporterStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CentraSiteImporterStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CentraSiteImporterStatus INITIALIZED_FOR_IMPORT
public static final CentraSiteImporterStatus PARSING
public static final CentraSiteImporterStatus IMPORT_READY
public static final CentraSiteImporterStatus MISSING_REFERENCE
public static final CentraSiteImporterStatus INVALID_FILE
public static final CentraSiteImporterStatus IMPORTED_SUCCESSFULLY
public static final CentraSiteImporterStatus PERMISSION_DENIED
public static CentraSiteImporterStatus[] values()
for (CentraSiteImporterStatus c : CentraSiteImporterStatus.values()) System.out.println(c);
public static CentraSiteImporterStatus 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