public static enum FeaturesConfig.JoinDistributionType extends Enum<FeaturesConfig.JoinDistributionType>
| Enum Constant and Description |
|---|
AUTOMATIC |
BROADCAST |
PARTITIONED |
| Modifier and Type | Method and Description |
|---|---|
boolean |
canPartition() |
boolean |
canReplicate() |
static FeaturesConfig.JoinDistributionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FeaturesConfig.JoinDistributionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeaturesConfig.JoinDistributionType BROADCAST
public static final FeaturesConfig.JoinDistributionType PARTITIONED
public static final FeaturesConfig.JoinDistributionType AUTOMATIC
public static FeaturesConfig.JoinDistributionType[] values()
for (FeaturesConfig.JoinDistributionType c : FeaturesConfig.JoinDistributionType.values()) System.out.println(c);
public static FeaturesConfig.JoinDistributionType 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 canPartition()
public boolean canReplicate()
Copyright © 2012–2019. All rights reserved.