Package org.apache.flink.test.util
Enum MultipleProgramsTestBase.TestExecutionMode
- java.lang.Object
-
- java.lang.Enum<MultipleProgramsTestBase.TestExecutionMode>
-
- org.apache.flink.test.util.MultipleProgramsTestBase.TestExecutionMode
-
- All Implemented Interfaces:
Serializable
,Comparable<MultipleProgramsTestBase.TestExecutionMode>
- Enclosing class:
- MultipleProgramsTestBase
public static enum MultipleProgramsTestBase.TestExecutionMode extends Enum<MultipleProgramsTestBase.TestExecutionMode>
Enum that defines which execution environment to run the next test on: An embedded local flink cluster, or the collection execution backend.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLUSTER
CLUSTER_OBJECT_REUSE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MultipleProgramsTestBase.TestExecutionMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static MultipleProgramsTestBase.TestExecutionMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLUSTER
public static final MultipleProgramsTestBase.TestExecutionMode CLUSTER
-
CLUSTER_OBJECT_REUSE
public static final MultipleProgramsTestBase.TestExecutionMode CLUSTER_OBJECT_REUSE
-
-
Method Detail
-
values
public static MultipleProgramsTestBase.TestExecutionMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MultipleProgramsTestBase.TestExecutionMode c : MultipleProgramsTestBase.TestExecutionMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MultipleProgramsTestBase.TestExecutionMode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-