public enum ResultPartitionType extends Enum<ResultPartitionType>
| Enum Constant and Description |
|---|
BLOCKING |
PIPELINED |
PIPELINED_PERSISTENT |
| Modifier and Type | Method and Description |
|---|---|
boolean |
hasBackPressure() |
boolean |
isBlocking() |
boolean |
isPersistent() |
boolean |
isPipelined() |
static ResultPartitionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResultPartitionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResultPartitionType BLOCKING
public static final ResultPartitionType PIPELINED
public static final ResultPartitionType PIPELINED_PERSISTENT
public static ResultPartitionType[] values()
for (ResultPartitionType c : ResultPartitionType.values()) System.out.println(c);
public static ResultPartitionType 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 hasBackPressure()
public boolean isBlocking()
public boolean isPipelined()
public boolean isPersistent()
Copyright © 2014–2016 The Apache Software Foundation. All rights reserved.