public enum WindowFrameBoundType extends java.lang.Enum<WindowFrameBoundType>
| Enum Constant and Description |
|---|
CURRENT_ROW
CURRENT_ROW clause.
|
FOLLOWING
FOLLOWING clause.
|
PRECEDING
PRECEDING clause.
|
UNBOUNDED_FOLLOWING
UNBOUNDED FOLLOWING clause.
|
UNBOUNDED_PRECEDING
UNBOUNDED PRECEDING clause.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getSQL()
Returns SQL representation.
|
static WindowFrameBoundType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WindowFrameBoundType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WindowFrameBoundType UNBOUNDED_PRECEDING
public static final WindowFrameBoundType PRECEDING
public static final WindowFrameBoundType CURRENT_ROW
public static final WindowFrameBoundType FOLLOWING
public static final WindowFrameBoundType UNBOUNDED_FOLLOWING
public static WindowFrameBoundType[] values()
for (WindowFrameBoundType c : WindowFrameBoundType.values()) System.out.println(c);
public static WindowFrameBoundType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getSQL()
Expression.getSQL(boolean)