Class IntervalJoinSpec.WindowBounds
- java.lang.Object
-
- org.apache.flink.table.planner.plan.nodes.exec.spec.IntervalJoinSpec.WindowBounds
-
- Enclosing class:
- IntervalJoinSpec
public static class IntervalJoinSpec.WindowBounds extends Object
WindowBounds describes the time range condition of a Interval Join.
-
-
Field Summary
Fields Modifier and Type Field Description static String
FIELD_NAME_IS_EVENT_TIME
static String
FIELD_NAME_LEFT_LOWER_BOUND
static String
FIELD_NAME_LEFT_TIME_IDX
static String
FIELD_NAME_LEFT_UPPER_BOUND
static String
FIELD_NAME_RIGHT_TIME_IDX
-
Constructor Summary
Constructors Constructor Description WindowBounds(boolean isEventTime, long leftLowerBound, long leftUpperBound, int leftTimeIdx, int rightTimeIdx)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
long
getLeftLowerBound()
int
getLeftTimeIdx()
long
getLeftUpperBound()
int
getRightTimeIdx()
int
hashCode()
boolean
isEventTime()
-
-
-
Field Detail
-
FIELD_NAME_IS_EVENT_TIME
public static final String FIELD_NAME_IS_EVENT_TIME
- See Also:
- Constant Field Values
-
FIELD_NAME_LEFT_LOWER_BOUND
public static final String FIELD_NAME_LEFT_LOWER_BOUND
- See Also:
- Constant Field Values
-
FIELD_NAME_LEFT_UPPER_BOUND
public static final String FIELD_NAME_LEFT_UPPER_BOUND
- See Also:
- Constant Field Values
-
FIELD_NAME_LEFT_TIME_IDX
public static final String FIELD_NAME_LEFT_TIME_IDX
- See Also:
- Constant Field Values
-
FIELD_NAME_RIGHT_TIME_IDX
public static final String FIELD_NAME_RIGHT_TIME_IDX
- See Also:
- Constant Field Values
-
-