Enum Class ClientCacheType

java.lang.Object
java.lang.Enum<ClientCacheType>
org.iplass.mtp.web.actionmapping.definition.ClientCacheType
All Implemented Interfaces:
Serializable, Comparable<ClientCacheType>, Constable

public enum ClientCacheType extends Enum<ClientCacheType>
クライアントキャッシュ指定(Cache-Controlヘッダ)の種別です。
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    キャッシュを許可します。 具体的にはCache-Controlをprivate指定します。 CACHEを指定する場合は、合わせてclientCacheMaxAgeも指定してください。
    キャッシュを許可します。 具体的にはCache-Controlをpublic指定します。 CACHE_PUBLICを指定する場合は、合わせてclientCacheMaxAgeも指定してください。
    キャッシュを許可しません。 具体的にはCache-Controlをprivate, no-store, no-cache, must-revalidate指定します (加えて、HTTP/1.0の場合は、Pragmaをno-cache指定します)。
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • CACHE

      public static final ClientCacheType CACHE
      キャッシュを許可します。 具体的にはCache-Controlをprivate指定します。 CACHEを指定する場合は、合わせてclientCacheMaxAgeも指定してください。
    • CACHE_PUBLIC

      public static final ClientCacheType CACHE_PUBLIC
      キャッシュを許可します。 具体的にはCache-Controlをpublic指定します。 CACHE_PUBLICを指定する場合は、合わせてclientCacheMaxAgeも指定してください。
    • NO_CACHE

      public static final ClientCacheType NO_CACHE
      キャッシュを許可しません。 具体的にはCache-Controlをprivate, no-store, no-cache, must-revalidate指定します (加えて、HTTP/1.0の場合は、Pragmaをno-cache指定します)。
  • Method Details

    • values

      public static ClientCacheType[] 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 ClientCacheType 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