public enum InputGranularity extends Enum<InputGranularity>
Enum Constant and Description |
---|
GROUP
The input handles each group from the upstream.
|
RECORD
The input handles each record from the upstream.
|
WHOLE
The input handles whole data from the upstream.
|
Modifier and Type | Method and Description |
---|---|
static InputGranularity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InputGranularity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InputGranularity RECORD
public static final InputGranularity GROUP
public static final InputGranularity WHOLE
public static InputGranularity[] values()
for (InputGranularity c : InputGranularity.values()) System.out.println(c);
public static InputGranularity 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 © 2011–2019 Asakusa Framework Team. All rights reserved.