| Modifier and Type | Method and Description |
|---|---|
static DateColumnBuilder |
builder(boolean sortedSet) |
static Collector<LocalDate,?,DateColumn> |
collector(boolean sortedSet) |
DateColumn |
head(LocalDate toElement)
Same behavior as
Column.head(Object, boolean), with inclusive set
to false. |
DateColumn |
head(LocalDate toElement,
boolean inclusive)
Returns a view of the portion of this column whose elements are less than (or
equal to, if
inclusive is true) toElement. |
static DateColumn |
of(LocalDate... elements) |
DateColumn |
subColumn(int fromIndex,
int toIndex)
Returns a view of the portion of this column between the specified
fromIndex, inclusive, and toIndex, exclusive.
|
DateColumn |
subColumn(LocalDate fromElement,
boolean fromInclusive,
LocalDate toElement,
boolean toInclusive)
Returns a view of the portion of this column whose elements range from
fromElement to toElement. |
DateColumn |
subColumn(LocalDate fromElement,
LocalDate toElement)
Same behavior as
Column#subColumn(Object, boolean, Object, Boolean),
with fromInclusive set to true and toInclusive set to false. |
DateColumn |
tail(LocalDate fromElement)
Same behavior as
Column.tail(Object, boolean), with inclusive set
to true. |
DateColumn |
tail(LocalDate fromElement,
boolean inclusive)
Returns a view of the portion of this column whose elements are greater than
(or equal to, if
inclusive is true) fromElement. |
int |
yyyymmdd(int index) |
append, append, getType, isNull, isNullable, isSortedSet, spliterator, toHeapadd, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, subList, toArray, toArrayceiling, descendingIterator, descendingSet, floor, headSet, headSet, higher, iterator, lower, pollFirst, pollLast, subSet, subSet, tailSet, tailSetcomparator, first, lastparallelStream, removeIf, streamDateColumn subColumn(int fromIndex, int toIndex)
ColumnDateColumn subColumn(LocalDate fromElement, boolean fromInclusive, LocalDate toElement, boolean toInclusive)
ColumnfromElement to toElement. If fromElement and
toElement are equal, the returned column is empty unless fromInclusive and toInclusive are both true. The returned column is
backed by this column.
This method is only available when Column.isSortedSet() returns
true.
subColumn in interface Column<LocalDate>fromElement - low endpoint of the returned columnfromInclusive - true if the low endpoint is to be included in the
returned viewtoElement - high endpoint of the returned columntoInclusive - true if the high endpoint is to be included in the
returned viewfromElement to toElementDateColumn subColumn(LocalDate fromElement, LocalDate toElement)
ColumnColumn#subColumn(Object, boolean, Object, Boolean),
with fromInclusive set to true and toInclusive set to false.
This method is only available when Column.isSortedSet() returns
true.
subColumn in interface Column<LocalDate>fromElement - low endpoint of the returned column, inclusivetoElement - high endpoint of the returned column, exclusivefromElement, inclusive, to toElement, exclusiveDateColumn head(LocalDate toElement, boolean inclusive)
Columninclusive is true) toElement. The returned
column is backed by this column.
This method is only available when Column.isSortedSet() returns
true.
head in interface Column<LocalDate>toElement - high endpoint of the returned columninclusive - true if the high endpoint is to be included in the
returned viewinclusive is true) toElementDateColumn head(LocalDate toElement)
ColumnColumn.head(Object, boolean), with inclusive set
to false.
This method is only available when Column.isSortedSet() returns
true.
DateColumn tail(LocalDate fromElement, boolean inclusive)
Columninclusive is true) fromElement. The returned
column is backed by this column.
This method is only available when Column.isSortedSet() returns
true.
DateColumn tail(LocalDate fromElement)
ColumnColumn.tail(Object, boolean), with inclusive set
to true.
This method is only available when Column.isSortedSet() returns
true.
int yyyymmdd(int index)
static DateColumnBuilder builder(boolean sortedSet)
static DateColumn of(LocalDate... elements)
static Collector<LocalDate,?,DateColumn> collector(boolean sortedSet)
Copyright © 2019. All rights reserved.