|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<CacheContentType>
com.voidsearch.voidbase.apps.cache.containers.CacheContentType
public enum CacheContentType
Cache content type - currently supported are TEXT and BINARY types
| Enum Constant Summary | |
|---|---|
BINARY
|
|
TEXT
|
|
UNKNOWN
|
|
| Method Summary | |
|---|---|
static CacheContentType |
deserialize(java.lang.String str)
Initializes a CacheContentType object |
java.lang.String |
serialize()
Serializes a content of a CacheContentType |
static CacheContentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static CacheContentType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final CacheContentType TEXT
public static final CacheContentType BINARY
public static final CacheContentType UNKNOWN
| Method Detail |
|---|
public static CacheContentType[] values()
for (CacheContentType c : CacheContentType.values()) System.out.println(c);
public static CacheContentType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is nullpublic java.lang.String serialize()
public static CacheContentType deserialize(java.lang.String str)
str -
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||