Enum Class ALfnTileStore.Result.Code

java.lang.Object
java.lang.Enum<ALfnTileStore.Result.Code>
com.luciad.fusion.tilestore.ALfnTileStore.Result.Code
All Implemented Interfaces:
Serializable, Comparable<ALfnTileStore.Result.Code>, Constable
Enclosing class:
ALfnTileStore.Result

public static enum ALfnTileStore.Result.Code extends Enum<ALfnTileStore.Result.Code>
An enumeration of result codes, similar to HTTP response codes.
Since:
2013.1
  • Enum Constant Details

    • FOUND

      public static final ALfnTileStore.Result.Code FOUND
      An entry was found. Data will be streamed to the caller.
    • NOT_FOUND

      public static final ALfnTileStore.Result.Code NOT_FOUND
      No entry was found.
    • NOT_MODIFIED

      public static final ALfnTileStore.Result.Code 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

      public static final ALfnTileStore.Result.Code PUT
      An existing entry has been updated with new data provided by the caller.
    • CREATED

      public static final ALfnTileStore.Result.Code CREATED
      A new entry has been created with new data provided by the caller.
    • DELETED

      public static final ALfnTileStore.Result.Code DELETED
      An existing entry has been deleted.
  • Method Details

    • values

      public static ALfnTileStore.Result.Code[] 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

      public static ALfnTileStore.Result.Code valueOf(String name)
      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 name
      NullPointerException - if the argument is null