
public enum FlushMode extends Enum<FlushMode>
| Enum Constant and Description |
|---|
ALL
All
|
GRACEFULLY
Gracefully
|
IDLE
Idle
|
INVALID
Invalid
|
| Modifier and Type | Method and Description |
|---|---|
static FlushMode |
valueOf(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(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 © 2013 IronJacamar (http://www.ironjacamar.org)