public static enum WindowExpression.FrameBound extends java.lang.Enum<WindowExpression.FrameBound>
| Enum Constant and Description |
|---|
CURRENT_ROW |
OFFSET_FOLLOWING |
OFFSET_PRECEDING |
UNBOUNDED_FOLLOWING |
UNBOUNDED_PRECEDING |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
render(java.lang.Integer offset) |
static WindowExpression.FrameBound |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WindowExpression.FrameBound[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WindowExpression.FrameBound UNBOUNDED_PRECEDING
public static final WindowExpression.FrameBound OFFSET_PRECEDING
public static final WindowExpression.FrameBound CURRENT_ROW
public static final WindowExpression.FrameBound OFFSET_FOLLOWING
public static final WindowExpression.FrameBound UNBOUNDED_FOLLOWING
public static WindowExpression.FrameBound[] values()
for (WindowExpression.FrameBound c : WindowExpression.FrameBound.values()) System.out.println(c);
public static WindowExpression.FrameBound 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 render(java.lang.Integer offset)