Package com.iizix.server.weblogos
Enum WebLogoState
- java.lang.Object
- java.lang.Enum<WebLogoState>
- com.iizix.server.weblogos.WebLogoState
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<WebLogoState>
public enum WebLogoState extends java.lang.Enum<WebLogoState>
Enumeration for the state of a web site logo.- Author:
- Christopher Mindus
Enum Constant Summary
Enum Constants Enum Constant Description DISPOSED
The instance of theWebLogo
is disposed of.ERROR
Flag for error when loading the logo, see more information atWebThumbnail#getException()
.INITIALIZING
The state is initializing and no values are yet processed.PENDING
Pending execution to load of the logo.RETRIEVING
The logo is being retrieved.SUCCESS
Success.
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WebLogoState
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static WebLogoState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
Enum Constant Detail
INITIALIZING
public static final WebLogoState INITIALIZING
The state is initializing and no values are yet processed.
SUCCESS
public static final WebLogoState SUCCESS
Success.
PENDING
public static final WebLogoState PENDING
Pending execution to load of the logo.
RETRIEVING
public static final WebLogoState RETRIEVING
The logo is being retrieved.
ERROR
public static final WebLogoState ERROR
Flag for error when loading the logo, see more information atWebThumbnail#getException()
.
DISPOSED
public static final WebLogoState DISPOSED
The instance of theWebLogo
is disposed of.
Method Detail
values
public static WebLogoState[] 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 (WebLogoState c : WebLogoState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
valueOf
public static WebLogoState valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null