Package org.iplass.mtp.webapi.definition
Enum Class CacheControlType
- All Implemented Interfaces:
Serializable
,Comparable<CacheControlType>
,Constable
WebAPIキャッシュ指定(Cache-Controlヘッダ)の種別です。
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionキャッシュを許可します。 具体的には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指定します)。キャッシュ設定は未指定です。 具体的にはCache-Controlを指定しません。 -
Method Summary
Modifier and TypeMethodDescriptionstatic CacheControlType
Returns the enum constant of this class with the specified name.static CacheControlType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CACHE
キャッシュを許可します。 具体的にはCache-Controlをprivate指定します。 CACHEを指定する場合は、合わせてclientCacheMaxAgeも指定してください。 -
CACHE_PUBLIC
キャッシュを許可します。 具体的にはCache-Controlをpublic指定します。 CACHE_PUBLICを指定する場合は、合わせてclientCacheMaxAgeも指定してください。 -
NO_CACHE
キャッシュを許可しません。 具体的にはCache-Controlをprivate, no-store, no-cache, must-revalidate指定します (加えて、HTTP/1.0の場合は、Pragmaをno-cache指定します)。 -
UNSPECIFIED
キャッシュ設定は未指定です。 具体的にはCache-Controlを指定しません。
-
-
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
-