Package com.luciad.fusion.tilestore
Enum Class ALfnTileStore.Result.Code
- All Implemented Interfaces:
Serializable
,Comparable<ALfnTileStore.Result.Code>
,Constable
- Enclosing class:
ALfnTileStore.Result
An enumeration of result codes, similar to HTTP response codes.
- Since:
- 2013.1
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionA new entry has been created with new data provided by the caller.An existing entry has been deleted.An entry was found.No entry was found.An entry was found but it was not modified since the caller's version, so no data will be streamed to the caller.An existing entry has been updated with new data provided by the caller. -
Method Summary
Modifier and TypeMethodDescriptionstatic ALfnTileStore.Result.Code
Returns the enum constant of this class with the specified name.static ALfnTileStore.Result.Code[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FOUND
An entry was found. Data will be streamed to the caller. -
NOT_FOUND
No entry was found. -
NOT_MODIFIED
An entry was found but it was not modified since the caller's version, so no data will be streamed to the caller. This is an optimization to save bandwidth. -
PUT
An existing entry has been updated with new data provided by the caller. -
CREATED
A new entry has been created with new data provided by the caller. -
DELETED
An existing entry has been deleted.
-
-
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
-