Class WindowKey
- java.lang.Object
-
- org.apache.flink.table.runtime.util.WindowKey
-
-
Constructor Summary
Constructors Constructor Description WindowKey(long window, org.apache.flink.table.data.RowData key)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
org.apache.flink.table.data.RowData
getKey()
long
getWindow()
int
hashCode()
WindowKey
replace(long window, org.apache.flink.table.data.RowData key)
Replace the currently stored key and window by the given new key and new window.
-
-
-
Method Detail
-
replace
public WindowKey replace(long window, org.apache.flink.table.data.RowData key)
Replace the currently stored key and window by the given new key and new window.
-
getWindow
public long getWindow()
-
getKey
public org.apache.flink.table.data.RowData getKey()
-
-