public enum WindowFrameExclusion extends java.lang.Enum<WindowFrameExclusion>
| Enum Constant and Description |
|---|
EXCLUDE_CURRENT_ROW
EXCLUDE CURRENT ROW exclusion clause.
|
EXCLUDE_GROUP
EXCLUDE GROUP exclusion clause.
|
EXCLUDE_NO_OTHERS
EXCLUDE NO OTHERS exclusion clause.
|
EXCLUDE_TIES
EXCLUDE TIES exclusion clause.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getSQL()
Returns SQL representation.
|
boolean |
isGroupOrNoOthers()
Returns true if this exclusion clause excludes or includes the whole
group.
|
static WindowFrameExclusion |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WindowFrameExclusion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WindowFrameExclusion EXCLUDE_CURRENT_ROW
public static final WindowFrameExclusion EXCLUDE_GROUP
public static final WindowFrameExclusion EXCLUDE_TIES
public static final WindowFrameExclusion EXCLUDE_NO_OTHERS
public static WindowFrameExclusion[] values()
for (WindowFrameExclusion c : WindowFrameExclusion.values()) System.out.println(c);
public static WindowFrameExclusion 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 boolean isGroupOrNoOthers()
EXCLUDE_GROUP or
EXCLUDE_NO_OTHERSpublic java.lang.String getSQL()
Expression.getSQL(boolean)