public static enum SimplCache.WRITEBACKPARAMETER extends Enum<SimplCache.WRITEBACKPARAMETER>
| Enum Constant and Description |
|---|
WITH_WRITE_BACK |
WITHOUT_WRITE_BACK |
| Modifier and Type | Method and Description |
|---|---|
static SimplCache.WRITEBACKPARAMETER |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimplCache.WRITEBACKPARAMETER[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimplCache.WRITEBACKPARAMETER WITH_WRITE_BACK
public static final SimplCache.WRITEBACKPARAMETER WITHOUT_WRITE_BACK
public static SimplCache.WRITEBACKPARAMETER[] values()
for (SimplCache.WRITEBACKPARAMETER c : SimplCache.WRITEBACKPARAMETER.values()) System.out.println(c);
public static SimplCache.WRITEBACKPARAMETER valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.