@PublicEvolving public enum RuntimeExecutionMode extends Enum<RuntimeExecutionMode>
Enum Constant and Description |
---|
AUTOMATIC
|
BATCH
The Pipeline will be executed with Batch Semantics.
|
STREAMING
The Pipeline will be executed with Streaming Semantics.
|
Modifier and Type | Method and Description |
---|---|
static RuntimeExecutionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RuntimeExecutionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RuntimeExecutionMode STREAMING
public static final RuntimeExecutionMode BATCH
public static final RuntimeExecutionMode AUTOMATIC
public static RuntimeExecutionMode[] values()
for (RuntimeExecutionMode c : RuntimeExecutionMode.values()) System.out.println(c);
public static RuntimeExecutionMode 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 © 2014–2023 The Apache Software Foundation. All rights reserved.