public static enum Journal.ReadType extends Enum<Journal.ReadType>
| Modifier and Type | Method and Description |
|---|---|
static Journal.ReadType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Journal.ReadType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Journal.ReadType SYNC
public static final Journal.ReadType ASYNC
public static Journal.ReadType[] values()
for (Journal.ReadType c : Journal.ReadType.values()) System.out.println(c);
public static Journal.ReadType 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 © 2014. All Rights Reserved.