public static enum BufferStoreEntry.EntryStatus extends Enum<BufferStoreEntry.EntryStatus>
| Enum Constant and Description |
|---|
Close
The entry is closed and no more
Records are expected |
Open
The entry is still active and the reader is used to retrieve more
Records |
| Modifier and Type | Method and Description |
|---|---|
static BufferStoreEntry.EntryStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BufferStoreEntry.EntryStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BufferStoreEntry.EntryStatus Open
Recordspublic static final BufferStoreEntry.EntryStatus Close
Records are expectedpublic static BufferStoreEntry.EntryStatus[] values()
for (BufferStoreEntry.EntryStatus c : BufferStoreEntry.EntryStatus.values()) System.out.println(c);
public static BufferStoreEntry.EntryStatus 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.