public enum SaveImageState extends Enum<SaveImageState>
Enum Constant and Description |
---|
Done |
Error |
Pending |
Requesting |
Timeout |
Modifier and Type | Method and Description |
---|---|
static SaveImageState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SaveImageState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SaveImageState Requesting
public static final SaveImageState Pending
public static final SaveImageState Done
public static final SaveImageState Error
public static final SaveImageState Timeout
public static SaveImageState[] values()
for (SaveImageState c : SaveImageState.values()) System.out.println(c);
public static SaveImageState 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 © 2016–2019. All rights reserved.