public static enum WinAggImplementor.SeekType extends Enum<WinAggImplementor.SeekType>
| Enum Constant and Description |
|---|
AGG_INDEX
The index of row that is aggregated.
|
END
End of window.
|
SET
Row position in the frame.
|
START
Start of window.
|
| Modifier and Type | Method and Description |
|---|---|
static WinAggImplementor.SeekType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WinAggImplementor.SeekType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WinAggImplementor.SeekType START
WinAggFrameContext.startIndex()public static final WinAggImplementor.SeekType SET
WinAggFrameContext.index()public static final WinAggImplementor.SeekType AGG_INDEX
WinAggAddContext.WinAggAddContext.currentPosition()public static final WinAggImplementor.SeekType END
WinAggFrameContext.endIndex()public static WinAggImplementor.SeekType[] values()
for (WinAggImplementor.SeekType c : WinAggImplementor.SeekType.values()) System.out.println(c);
public static WinAggImplementor.SeekType 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 © 2012–2015 The Apache Software Foundation. All rights reserved.