public enum StorageListImagesState extends java.lang.Enum<StorageListImagesState>
| Enum Constant and Description |
|---|
INTERRUPTED
An image list is interrupted.
|
LISTED
An image list is listed.
When starting acquisition, this state is changed to LISTING. |
LISTING
An acquisition is in progress.
When finishing acquisition, this state is changed to LISTED. |
NOT_LISTED
An image list is not listed.
When starting acquisition, this state is changed to LISTING. |
PENDING
An acquisition is pending.
|
| Modifier and Type | Method and Description |
|---|---|
static StorageListImagesState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StorageListImagesState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StorageListImagesState NOT_LISTED
public static final StorageListImagesState LISTING
public static final StorageListImagesState PENDING
public static final StorageListImagesState LISTED
public static final StorageListImagesState INTERRUPTED
public static StorageListImagesState[] values()
for (StorageListImagesState c : StorageListImagesState.values()) System.out.println(c);
public static StorageListImagesState 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