public static enum Input.InputMode extends Enum<Input.InputMode>
| Enum Constant and Description |
|---|
CHANNEL
Channel mode.
The variable is just read from an output channel. |
COLLECTION
Collection mode.
The inputs are collected from the channel and passed as an array or collection to the wrapped method. |
ELEMENT
Element mode.
Each element of the input collection or array is passed separately to the wrapped method. |
| Modifier and Type | Method and Description |
|---|---|
static Input.InputMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Input.InputMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Input.InputMode CHANNEL
OutputChannel.public static final Input.InputMode ELEMENT
Iterable and
must be the only parameter accepted by the method.public static final Input.InputMode COLLECTION
OutputChannel and must be the
only parameter accepted by the method.public static Input.InputMode[] values()
for (Input.InputMode c : Input.InputMode.values()) System.out.println(c);
public static Input.InputMode 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 null