public static enum OperatorSpec.OperatorKind extends Enum<OperatorSpec.OperatorKind>
OperatorSpec
.Enum Constant and Description |
---|
CORE
Core operators.
|
CUSTOM
Custom operators.
|
FLOW
Nested operators.
|
INPUT
External inputs.
|
MARKER
Pseudo operators for information.
|
OUTPUT
External outputs.
|
PLAN_INPUT
Pseudo operators for plan vertex inputs.
|
PLAN_OUTPUT
Pseudo operators for plan vertex outputs.
|
PLAN_VERTEX
Pseudo operators for plan vertices.
|
USER
User operators.
|
Modifier and Type | Method and Description |
---|---|
static OperatorSpec.OperatorKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperatorSpec.OperatorKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperatorSpec.OperatorKind CORE
public static final OperatorSpec.OperatorKind USER
public static final OperatorSpec.OperatorKind FLOW
public static final OperatorSpec.OperatorKind INPUT
public static final OperatorSpec.OperatorKind OUTPUT
public static final OperatorSpec.OperatorKind MARKER
public static final OperatorSpec.OperatorKind CUSTOM
public static final OperatorSpec.OperatorKind PLAN_VERTEX
public static final OperatorSpec.OperatorKind PLAN_INPUT
public static final OperatorSpec.OperatorKind PLAN_OUTPUT
public static OperatorSpec.OperatorKind[] values()
for (OperatorSpec.OperatorKind c : OperatorSpec.OperatorKind.values()) System.out.println(c);
public static OperatorSpec.OperatorKind 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.