public enum FlushMode extends java.lang.Enum<FlushMode>
| Enum Constant and Description |
|---|
ALL
All
|
GRACEFULLY
Gracefully
|
IDLE
Idle
|
INVALID
Invalid
|
| Modifier and Type | Method and Description |
|---|---|
static FlushMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FlushMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlushMode INVALID
public static final FlushMode IDLE
public static final FlushMode GRACEFULLY
public static final FlushMode ALL
public static FlushMode[] values()
for (FlushMode c : FlushMode.values()) System.out.println(c);
public static FlushMode 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 nullCopyright © 2014 IronJacamar (http://www.ironjacamar.org)