public static enum WindowFrameClause.WindowFrameExclusionType extends Enum<WindowFrameClause.WindowFrameExclusionType>
| Enum Constant and Description |
|---|
CURRENT_ROW |
GROUP |
NO_OTHERS |
TIES |
| Modifier and Type | Method and Description |
|---|---|
String |
getSqlKeyword()
Get the keyword for rendering to SQL.
|
static WindowFrameClause.WindowFrameExclusionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WindowFrameClause.WindowFrameExclusionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WindowFrameClause.WindowFrameExclusionType CURRENT_ROW
public static final WindowFrameClause.WindowFrameExclusionType TIES
public static final WindowFrameClause.WindowFrameExclusionType GROUP
public static final WindowFrameClause.WindowFrameExclusionType NO_OTHERS
public static WindowFrameClause.WindowFrameExclusionType[] values()
for (WindowFrameClause.WindowFrameExclusionType c : WindowFrameClause.WindowFrameExclusionType.values()) System.out.println(c);
public static WindowFrameClause.WindowFrameExclusionType 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 nullpublic String getSqlKeyword()
Copyright © 2018–2021. All rights reserved.