|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DSWriteOption>
com.alachisoft.ncache.web.caching.DSWriteOption
public enum DSWriteOption
Describes the type of Parameters passed when performing an operation on Cache
Enum Constant Summary | |
---|---|
None
Do not update data source |
|
WriteBehind
Update data source asynchronously |
|
WriteThru
Update data source synchronously |
Method Summary | |
---|---|
static DSWriteOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DSWriteOption[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, 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 DSWriteOption None
public static final DSWriteOption WriteBehind
public static final DSWriteOption WriteThru
Method Detail |
---|
public static DSWriteOption 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 namepublic static final DSWriteOption[] values()
for(DSWriteOption c : DSWriteOption.values()) System.out.println(c);
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |