public static enum InputProperty.DamBehavior extends Enum<InputProperty.DamBehavior>
ExecNode
.Enum Constant and Description |
---|
BLOCKING
Constant indicating that all output records from the input will not trigger output
records of the target
ExecNode . |
END_INPUT
Constant indicating that only the last output record from the input will immediately
trigger one or more output records of the target
ExecNode . |
PIPELINED
Constant indicating that some or all output records from the input will immediately
trigger one or more output records of the target
ExecNode . |
Modifier and Type | Method and Description |
---|---|
boolean |
stricterOrEqual(InputProperty.DamBehavior o) |
static InputProperty.DamBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InputProperty.DamBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InputProperty.DamBehavior PIPELINED
ExecNode
.public static final InputProperty.DamBehavior END_INPUT
ExecNode
.public static final InputProperty.DamBehavior BLOCKING
ExecNode
.public static InputProperty.DamBehavior[] values()
for (InputProperty.DamBehavior c : InputProperty.DamBehavior.values()) System.out.println(c);
public static InputProperty.DamBehavior 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 nullpublic boolean stricterOrEqual(InputProperty.DamBehavior o)
Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.