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