Package io.trino.sql.tree
Enum FrameBound.Type
- java.lang.Object
-
- java.lang.Enum<FrameBound.Type>
-
- io.trino.sql.tree.FrameBound.Type
-
- All Implemented Interfaces:
Serializable,Comparable<FrameBound.Type>
- Enclosing class:
- FrameBound
public static enum FrameBound.Type extends Enum<FrameBound.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CURRENT_ROWFOLLOWINGPRECEDINGUNBOUNDED_FOLLOWINGUNBOUNDED_PRECEDING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FrameBound.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static FrameBound.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNBOUNDED_PRECEDING
public static final FrameBound.Type UNBOUNDED_PRECEDING
-
PRECEDING
public static final FrameBound.Type PRECEDING
-
CURRENT_ROW
public static final FrameBound.Type CURRENT_ROW
-
FOLLOWING
public static final FrameBound.Type FOLLOWING
-
UNBOUNDED_FOLLOWING
public static final FrameBound.Type UNBOUNDED_FOLLOWING
-
-
Method Detail
-
values
public static FrameBound.Type[] 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 (FrameBound.Type c : FrameBound.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FrameBound.Type 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
-
-