类 EndRowRange
- java.lang.Object
-
- io.github.burukeyou.dataframe.iframe.window.round.EndRowRange
-
- 所有已实现的接口:
WindowRange
public class EndRowRange extends Object implements WindowRange
The Last row
-
-
构造器概要
构造器 构造器 说明 EndRowRange()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 <T> IntegergetEndIndex(Integer currentRowIndex, List<T> windowList)get the window sliding end boundary<T> IntegergetStartIndex(Integer currentRowIndex, List<T> windowList)get the window sliding start boundarybooleanisFixedEndIndex()is the end boundary fixed-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
从接口继承的方法 io.github.burukeyou.dataframe.iframe.window.round.WindowRange
check, eq, isFixedStartIndex
-
-
-
-
方法详细资料
-
isFixedEndIndex
public boolean isFixedEndIndex()
从接口复制的说明:WindowRangeis the end boundary fixed- 指定者:
isFixedEndIndex在接口中WindowRange
-
getStartIndex
public <T> Integer getStartIndex(Integer currentRowIndex, List<T> windowList)
从接口复制的说明:WindowRangeget the window sliding start boundary- 指定者:
getStartIndex在接口中WindowRange- 参数:
currentRowIndex- the current row indexwindowList- the current window data
-
getEndIndex
public <T> Integer getEndIndex(Integer currentRowIndex, List<T> windowList)
从接口复制的说明:WindowRangeget the window sliding end boundary- 指定者:
getEndIndex在接口中WindowRange- 参数:
currentRowIndex- the current row indexwindowList- the current window data
-
-