java.lang.Object
java.lang.Enum<SourcePicture.SourcePictureStatus>
org.jpo.datamodel.SourcePicture.SourcePictureStatus
- All Implemented Interfaces:
Serializable
,Comparable<SourcePicture.SourcePictureStatus>
,Constable
- Enclosing class:
SourcePicture
public static enum SourcePicture.SourcePictureStatus
extends Enum<SourcePicture.SourcePictureStatus>
States of the source picture
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe picture could be in errorThe picture could be loadingThe picture could have finished loadingThe picture could be making progress while loadingThe picture could have stared loadingThe picture could be readyThe picture could be rotatingThe picture could be uninitialised -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static SourcePicture.SourcePictureStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SOURCE_PICTURE_UNINITIALISED
The picture could be uninitialised -
SOURCE_PICTURE_LOADING
The picture could be loading -
SOURCE_PICTURE_ROTATING
The picture could be rotating -
SOURCE_PICTURE_READY
The picture could be ready -
SOURCE_PICTURE_ERROR
The picture could be in error -
SOURCE_PICTURE_LOADING_STARTED
The picture could have stared loading -
SOURCE_PICTURE_LOADING_PROGRESS
The picture could be making progress while loading -
SOURCE_PICTURE_LOADING_COMPLETED
The picture could have finished loading
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-