public enum InputChannelResult extends Enum<InputChannelResult>
| Enum Constant and Description |
|---|
END_OF_STREAM |
END_OF_SUPERSTEP |
INTERMEDIATE_RECORD_FROM_BUFFER |
LAST_RECORD_FROM_BUFFER |
NONE |
TASK_EVENT |
| Modifier and Type | Method and Description |
|---|---|
static InputChannelResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InputChannelResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InputChannelResult NONE
public static final InputChannelResult INTERMEDIATE_RECORD_FROM_BUFFER
public static final InputChannelResult LAST_RECORD_FROM_BUFFER
public static final InputChannelResult END_OF_SUPERSTEP
public static final InputChannelResult TASK_EVENT
public static final InputChannelResult END_OF_STREAM
public static InputChannelResult[] values()
for (InputChannelResult c : InputChannelResult.values()) System.out.println(c);
public static InputChannelResult 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 © 2015 The Apache Software Foundation. All rights reserved.