|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<IBufferStore.MultiplexType>
gr.uoa.di.madgik.grs.store.buffer.IBufferStore.MultiplexType
public static enum IBufferStore.MultiplexType
Indicates the way that the incoming locators are read and their data persisted in the underlying storage device
Enum Constant Summary | |
---|---|
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 Record s is used first. |
Method Summary | |
---|---|
static IBufferStore.MultiplexType |
valueOf(java.lang.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. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final IBufferStore.MultiplexType FIFO
public static final IBufferStore.MultiplexType FirstAvailable
Record
s is used first. In cases where none of the readers have
readily available Record
s, it is up to the implementation to select the way ithis is handled
Method Detail |
---|
public static IBufferStore.MultiplexType[] values()
for (IBufferStore.MultiplexType c : IBufferStore.MultiplexType.values()) System.out.println(c);
public static IBufferStore.MultiplexType 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 name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |