Package io.keikai.range.impl.autofill
Interface Step
-
- All Known Implementing Classes:
BlankStep
,CopyStep
,DateTimeStep
,GrowthStep
,LinearStep
public interface Step
Step for handling incremental auto fill- Since:
- 2.1.0
- Author:
- henrichen
-
-
Field Summary
Fields Modifier and Type Field Description static int
BLANK
static int
DATE
static int
FULL_MONTH
static int
FULL_WEEK
static int
NUMBER
static int
SHORT_MONTH
static int
SHORT_WEEK
static int
STRING
static int
TIME
static int
US_FULL_MONTH
static int
US_FULL_WEEK
static int
US_SHORT_MONTH
static int
US_SHORT_WEEK
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getDataType()
Returns the data type of this Step.Object
next(SCell srcCell)
Return next value of this step sequence per the source cell.
-
-
-
Field Detail
-
STRING
static final int STRING
- See Also:
- Constant Field Values
-
SHORT_WEEK
static final int SHORT_WEEK
- See Also:
- Constant Field Values
-
SHORT_MONTH
static final int SHORT_MONTH
- See Also:
- Constant Field Values
-
FULL_WEEK
static final int FULL_WEEK
- See Also:
- Constant Field Values
-
FULL_MONTH
static final int FULL_MONTH
- See Also:
- Constant Field Values
-
NUMBER
static final int NUMBER
- See Also:
- Constant Field Values
-
DATE
static final int DATE
- See Also:
- Constant Field Values
-
TIME
static final int TIME
- See Also:
- Constant Field Values
-
BLANK
static final int BLANK
- See Also:
- Constant Field Values
-
US_SHORT_WEEK
static final int US_SHORT_WEEK
- See Also:
- Constant Field Values
-
US_SHORT_MONTH
static final int US_SHORT_MONTH
- See Also:
- Constant Field Values
-
US_FULL_WEEK
static final int US_FULL_WEEK
- See Also:
- Constant Field Values
-
US_FULL_MONTH
static final int US_FULL_MONTH
- See Also:
- Constant Field Values
-
-
Method Detail
-
next
Object next(SCell srcCell)
Return next value of this step sequence per the source cell.- Parameters:
srcCell
- the source cell for filling- Returns:
- next value of this step per the source cell
-
getDataType
int getDataType()
Returns the data type of this Step.- Returns:
- the data type of this Step.
-
-