public static enum RingBuffer.IterationDirection extends Enum<RingBuffer.IterationDirection>
Modifier and Type | Method and Description |
---|---|
static RingBuffer.IterationDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RingBuffer.IterationDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RingBuffer.IterationDirection FORWARD
public static final RingBuffer.IterationDirection BACKWARD
public static RingBuffer.IterationDirection[] values()
for (RingBuffer.IterationDirection c : RingBuffer.IterationDirection.values()) System.out.println(c);
public static RingBuffer.IterationDirection 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 © 2019 Apache NiFi Project. All rights reserved.