public enum ResultPartitionState extends Enum<ResultPartitionState>
SchedulingResultPartition
.Enum Constant and Description |
---|
ALL_DATA_PRODUCED
Partition has produced all data.
|
CREATED
Partition is just created or is just reset.
|
Modifier and Type | Method and Description |
---|---|
static ResultPartitionState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResultPartitionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResultPartitionState CREATED
public static final ResultPartitionState ALL_DATA_PRODUCED
public static ResultPartitionState[] values()
for (ResultPartitionState c : ResultPartitionState.values()) System.out.println(c);
public static ResultPartitionState 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–2024 The Apache Software Foundation. All rights reserved.