@PublicEvolving public enum OverWindowRange extends Enum<OverWindowRange> implements TableSymbol
BuiltInFunctionDefinitions.OVER
window.Enum Constant and Description |
---|
CURRENT_RANGE |
CURRENT_ROW |
UNBOUNDED_RANGE |
UNBOUNDED_ROW |
Modifier and Type | Method and Description |
---|---|
static OverWindowRange |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OverWindowRange[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OverWindowRange CURRENT_ROW
public static final OverWindowRange CURRENT_RANGE
public static final OverWindowRange UNBOUNDED_ROW
public static final OverWindowRange UNBOUNDED_RANGE
public static OverWindowRange[] values()
for (OverWindowRange c : OverWindowRange.values()) System.out.println(c);
public static OverWindowRange 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 © 2014–2024 The Apache Software Foundation. All rights reserved.