public static enum PageCacheRecycler.Type extends java.lang.Enum<PageCacheRecycler.Type>
| Enum Constant | Description |
|---|---|
CONCURRENT |
|
NONE |
|
QUEUE |
| Modifier and Type | Method | Description |
|---|---|---|
static PageCacheRecycler.Type |
parse(java.lang.String type) |
|
static PageCacheRecycler.Type |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static PageCacheRecycler.Type[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageCacheRecycler.Type QUEUE
public static final PageCacheRecycler.Type CONCURRENT
public static final PageCacheRecycler.Type NONE
public static PageCacheRecycler.Type[] values()
for (PageCacheRecycler.Type c : PageCacheRecycler.Type.values()) System.out.println(c);
public static PageCacheRecycler.Type 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 namejava.lang.NullPointerException - if the argument is nullpublic static PageCacheRecycler.Type parse(java.lang.String type)