public enum RollCycleRetriever extends Enum<RollCycleRetriever>
| Modifier and Type | Method and Description |
|---|---|
static Optional<RollCycle> |
getRollCycle(Path queuePath,
net.openhft.chronicle.wire.WireType wireType,
long blockSize) |
static RollCycleRetriever |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RollCycleRetriever[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static RollCycleRetriever[] values()
for (RollCycleRetriever c : RollCycleRetriever.values()) System.out.println(c);
public static RollCycleRetriever 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 © 2018. All rights reserved.