public static enum Optimizer.PlanInputType extends Enum<Optimizer.PlanInputType>
Enum Constant and Description |
---|
ABSTRACT_PLAN |
RUNTIME_PLAN |
Modifier and Type | Method and Description |
---|---|
static Optimizer.PlanInputType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Optimizer.PlanInputType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Optimizer.PlanInputType ABSTRACT_PLAN
public static final Optimizer.PlanInputType RUNTIME_PLAN
public static Optimizer.PlanInputType[] values()
for (Optimizer.PlanInputType c : Optimizer.PlanInputType.values()) System.out.println(c);
public static Optimizer.PlanInputType 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 © 2022 The Apache Software Foundation. All rights reserved.