Package com.veertu.plugin.anka
Enum SaveImageState
- java.lang.Object
-
- java.lang.Enum<SaveImageState>
-
- com.veertu.plugin.anka.SaveImageState
-
- All Implemented Interfaces:
Serializable
,Comparable<SaveImageState>
public enum SaveImageState extends Enum<SaveImageState>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
Future
public static final SaveImageState Future
-
Requesting
public static final SaveImageState Requesting
-
Pending
public static final SaveImageState Pending
-
Done
public static final SaveImageState Done
-
Error
public static final SaveImageState Error
-
Timeout
public static final SaveImageState Timeout
-
-
Method Detail
-
values
public static SaveImageState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SaveImageState c : SaveImageState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SaveImageState valueOf(String name)
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 nameNullPointerException
- if the argument is null
-
-