|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ServerCacheControlType>
org.apache.cxf.transports.http.configuration.ServerCacheControlType
public enum ServerCacheControlType
Java class for serverCacheControlType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="serverCacheControlType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="no-cache"/>
<enumeration value="public"/>
<enumeration value="private"/>
<enumeration value="no-store"/>
<enumeration value="no-transform"/>
<enumeration value="must-revalidate"/>
<enumeration value="proxy-revalidate"/>
<enumeration value="max-age"/>
<enumeration value="s-max-age"/>
<enumeration value="cache-extension"/>
</restriction>
</simpleType>
| Enum Constant Summary | |
|---|---|
CACHE_EXTENSION
|
|
MAX_AGE
|
|
MUST_REVALIDATE
|
|
NO_CACHE
|
|
NO_STORE
|
|
NO_TRANSFORM
|
|
PRIVATE
|
|
PROXY_REVALIDATE
|
|
PUBLIC
|
|
S_MAX_AGE
|
|
| Method Summary | |
|---|---|
static ServerCacheControlType |
fromValue(String v)
|
String |
value()
|
static ServerCacheControlType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ServerCacheControlType[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final ServerCacheControlType NO_CACHE
public static final ServerCacheControlType PUBLIC
public static final ServerCacheControlType PRIVATE
public static final ServerCacheControlType NO_STORE
public static final ServerCacheControlType NO_TRANSFORM
public static final ServerCacheControlType MUST_REVALIDATE
public static final ServerCacheControlType PROXY_REVALIDATE
public static final ServerCacheControlType MAX_AGE
public static final ServerCacheControlType S_MAX_AGE
public static final ServerCacheControlType CACHE_EXTENSION
| Method Detail |
|---|
public static final ServerCacheControlType[] values()
for(ServerCacheControlType c : ServerCacheControlType.values())
System.out.println(c);
public static ServerCacheControlType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified namepublic String value()
public static ServerCacheControlType fromValue(String v)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||