public enum WriteFrequency extends java.lang.Enum<WriteFrequency>
| Enum Constant and Description |
|---|
END_OF_SERVLET_SERVICE |
MANUAL_UPDATE |
TIME_BASED_WRITE |
| Modifier and Type | Method and Description |
|---|---|
static WriteFrequency |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WriteFrequency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WriteFrequency TIME_BASED_WRITE
public static final WriteFrequency END_OF_SERVLET_SERVICE
public static final WriteFrequency MANUAL_UPDATE
public static WriteFrequency[] values()
for (WriteFrequency c : WriteFrequency.values()) System.out.println(c);
public static WriteFrequency 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 null