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 booleanequals(Object o)org.apache.flink.table.data.RowDatagetKey()longgetWindow()inthashCode()WindowKeyreplace(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()
-
-