Package io.trino.sql.planner.planprinter
Enum IoPlanPrinter.FormattedMarker.Bound
- java.lang.Object
-
- java.lang.Enum<IoPlanPrinter.FormattedMarker.Bound>
-
- io.trino.sql.planner.planprinter.IoPlanPrinter.FormattedMarker.Bound
-
- All Implemented Interfaces:
Serializable,Comparable<IoPlanPrinter.FormattedMarker.Bound>
- Enclosing class:
- IoPlanPrinter.FormattedMarker
public static enum IoPlanPrinter.FormattedMarker.Bound extends Enum<IoPlanPrinter.FormattedMarker.Bound>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IoPlanPrinter.FormattedMarker.BoundvalueOf(String name)Returns the enum constant of this type with the specified name.static IoPlanPrinter.FormattedMarker.Bound[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BELOW
public static final IoPlanPrinter.FormattedMarker.Bound BELOW
-
EXACTLY
public static final IoPlanPrinter.FormattedMarker.Bound EXACTLY
-
ABOVE
public static final IoPlanPrinter.FormattedMarker.Bound ABOVE
-
-
Method Detail
-
values
public static IoPlanPrinter.FormattedMarker.Bound[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IoPlanPrinter.FormattedMarker.Bound c : IoPlanPrinter.FormattedMarker.Bound.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IoPlanPrinter.FormattedMarker.Bound valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-