public interface DateTimeColumn extends Column<LocalDateTime>
| Modifier and Type | Method and Description |
|---|---|
static DateTimeColumnBuilder |
builder(boolean sortedSet) |
static Collector<LocalDateTime,?,DateTimeColumn> |
collector(boolean sortedSet) |
DateTimeColumn |
head(LocalDateTime toElement)
Same behavior as
Column.head(Object, boolean), with inclusive set
to false. |
DateTimeColumn |
head(LocalDateTime 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 DateTimeColumn |
of(LocalDateTime... elements) |
DateTimeColumn |
subColumn(int fromIndex,
int toIndex)
Returns a view of the portion of this column between the specified
fromIndex, inclusive, and toIndex, exclusive.
|
DateTimeColumn |
subColumn(LocalDateTime fromElement,
boolean fromInclusive,
LocalDateTime toElement,
boolean toInclusive)
Returns a view of the portion of this column whose elements range from
fromElement to toElement. |
DateTimeColumn |
subColumn(LocalDateTime fromElement,
LocalDateTime toElement)
Same behavior as
Column#subColumn(Object, boolean, Object, Boolean),
with fromInclusive set to true and toInclusive set to false. |
DateTimeColumn |
tail(LocalDateTime fromElement)
Same behavior as
Column.tail(Object, boolean), with inclusive set
to true. |
DateTimeColumn |
tail(LocalDateTime 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. |
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, streamDateTimeColumn subColumn(int fromIndex, int toIndex)
ColumnsubColumn in interface Column<LocalDateTime>fromIndex - low endpoint (inclusive) of the subListtoIndex - high endpoint (exclusive) of the subListDateTimeColumn subColumn(LocalDateTime fromElement, boolean fromInclusive, LocalDateTime 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<LocalDateTime>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 toElementDateTimeColumn subColumn(LocalDateTime fromElement, LocalDateTime 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<LocalDateTime>fromElement - low endpoint of the returned column, inclusivetoElement - high endpoint of the returned column, exclusivefromElement, inclusive, to toElement, exclusiveDateTimeColumn head(LocalDateTime 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<LocalDateTime>toElement - high endpoint of the returned columninclusive - true if the high endpoint is to be included in the
returned viewinclusive is true) toElementDateTimeColumn head(LocalDateTime toElement)
ColumnColumn.head(Object, boolean), with inclusive set
to false.
This method is only available when Column.isSortedSet() returns
true.
head in interface Column<LocalDateTime>toElement - high endpoint of the returned columntoElementDateTimeColumn tail(LocalDateTime 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.
tail in interface Column<LocalDateTime>fromElement - low endpoint of the returned columninclusive - true if the low endpoint is to be included in the
returned viewfromElementDateTimeColumn tail(LocalDateTime fromElement)
ColumnColumn.tail(Object, boolean), with inclusive set
to true.
This method is only available when Column.isSortedSet() returns
true.
tail in interface Column<LocalDateTime>fromElement - low endpoint of the returned columnfromElementstatic DateTimeColumnBuilder builder(boolean sortedSet)
static DateTimeColumn of(LocalDateTime... elements)
static Collector<LocalDateTime,?,DateTimeColumn> collector(boolean sortedSet)
Copyright © 2019. All rights reserved.