public static enum IBufferStore.MultiplexType extends Enum<IBufferStore.MultiplexType>
| Enum Constant and Description |
|---|
FIFO
All locators are used sequentially from beginning to end before the next is used, in the order they were provided
|
FirstAvailable
The reader that has readily available
Records is used first. |
| Modifier and Type | Method and Description |
|---|---|
static IBufferStore.MultiplexType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IBufferStore.MultiplexType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IBufferStore.MultiplexType FIFO
public static final IBufferStore.MultiplexType FirstAvailable
public static IBufferStore.MultiplexType[] values()
for (IBufferStore.MultiplexType c : IBufferStore.MultiplexType.values()) System.out.println(c);
public static IBufferStore.MultiplexType 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.