Package org.apache.flink.configuration
Enum JobManagerOptions.HybridPartitionDataConsumeConstraint
- java.lang.Object
-
- java.lang.Enum<JobManagerOptions.HybridPartitionDataConsumeConstraint>
-
- org.apache.flink.configuration.JobManagerOptions.HybridPartitionDataConsumeConstraint
-
- All Implemented Interfaces:
Serializable
,Comparable<JobManagerOptions.HybridPartitionDataConsumeConstraint>
- Enclosing class:
- JobManagerOptions
public static enum JobManagerOptions.HybridPartitionDataConsumeConstraint extends Enum<JobManagerOptions.HybridPartitionDataConsumeConstraint>
Constraints of upstream hybrid partition data consumption by downstream.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_PRODUCERS_FINISHED
ONLY_FINISHED_PRODUCERS
UNFINISHED_PRODUCERS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isOnlyConsumeFinishedPartition()
static JobManagerOptions.HybridPartitionDataConsumeConstraint
valueOf(String name)
Returns the enum constant of this type with the specified name.static JobManagerOptions.HybridPartitionDataConsumeConstraint[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL_PRODUCERS_FINISHED
public static final JobManagerOptions.HybridPartitionDataConsumeConstraint ALL_PRODUCERS_FINISHED
-
ONLY_FINISHED_PRODUCERS
public static final JobManagerOptions.HybridPartitionDataConsumeConstraint ONLY_FINISHED_PRODUCERS
-
UNFINISHED_PRODUCERS
public static final JobManagerOptions.HybridPartitionDataConsumeConstraint UNFINISHED_PRODUCERS
-
-
Method Detail
-
values
public static JobManagerOptions.HybridPartitionDataConsumeConstraint[] 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 (JobManagerOptions.HybridPartitionDataConsumeConstraint c : JobManagerOptions.HybridPartitionDataConsumeConstraint.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JobManagerOptions.HybridPartitionDataConsumeConstraint 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
-
isOnlyConsumeFinishedPartition
public boolean isOnlyConsumeFinishedPartition()
-
-