public static enum SQLOver.WindowingBound extends Enum<SQLOver.WindowingBound>
| Enum Constant and Description |
|---|
CURRENT_ROW |
FOLLOWING |
PRECEDING |
UNBOUNDED_FOLLOWING |
UNBOUNDED_PRECEDING |
| Modifier and Type | Field and Description |
|---|---|
String |
name |
String |
name_lower |
| Modifier and Type | Method and Description |
|---|---|
static SQLOver.WindowingBound |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SQLOver.WindowingBound[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SQLOver.WindowingBound UNBOUNDED_PRECEDING
public static final SQLOver.WindowingBound PRECEDING
public static final SQLOver.WindowingBound CURRENT_ROW
public static final SQLOver.WindowingBound FOLLOWING
public static final SQLOver.WindowingBound UNBOUNDED_FOLLOWING
public static SQLOver.WindowingBound[] values()
for (SQLOver.WindowingBound c : SQLOver.WindowingBound.values()) System.out.println(c);
public static SQLOver.WindowingBound 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 nullCopyright © 2013–2021 Alibaba Group. All rights reserved.