Modifier and Type | Method | Description |
---|---|---|
abstract LocalDateTime |
DateTimeAggregateFunction.summarize(DateTimeColumn column) |
Returns an LocalDateTime that is the result of applying this function to the given column
|
Modifier and Type | Method | Description |
---|---|---|
DateTimeColumn |
DateTimeColumn.append(LocalDateTime dateTime) |
Appends value to the bottom of this column and return this column
|
DateTimeColumn |
DateTimeColumn.append(Column<LocalDateTime> column) |
Appends all the values in the argument to the bottom of this column and return this column
|
DateTimeColumn |
DateTimeColumn.append(Column<LocalDateTime> column,
int row) |
Appends the value at the given row in the given column to the bottom of this column and return
this column
|
DateTimeColumn |
DateTimeColumn.appendCell(String stringValue) |
Add one element to the bottom of this column and set its value to the parsed value of the given
String.
|
DateTimeColumn |
DateTimeColumn.appendCell(String stringValue,
AbstractColumnParser<?> parser) |
Add one element to the bottom of this column and set its value to the parsed value of the given
String, as performed by the given parser
|
DateTimeColumn |
DateTimeColumn.appendInternal(long dateTime) |
Returns this column with the argument appended at the bottom
|
DateTimeColumn |
DateTimeColumn.appendMissing() |
Appends a missing value appropriate to the column
|
DateTimeColumn |
DateTimeColumn.appendObj(Object obj) |
Appends the given value to the bottom of this column and return this column
|
DateTimeColumn |
LongColumn.asDateTimes(ZoneOffset offset) |
Returns a DateTimeColumn where each value is the LocalDateTime represented by the values in
this column
|
DateTimeColumn |
InstantColumn.asLocalDateTimeColumn() |
Returns a DateTimeColumn where each element is a representation of the associated Instant
translated using UTC as the timezone
|
DateTimeColumn |
InstantColumn.asLocalDateTimeColumn(ZoneId zone) |
Returns a DateTimeColumn where each element is a representation of the associated Instant
translated using the argument as the timezone
|
DateTimeColumn |
DateTimeColumn.copy() |
Returns a deep copy of the receiver
|
static DateTimeColumn |
DateTimeColumn.create(String name) |
|
static DateTimeColumn |
DateTimeColumn.create(String name,
int initialSize) |
|
static DateTimeColumn |
DateTimeColumn.create(String name,
LocalDateTime... data) |
|
static DateTimeColumn |
DateTimeColumn.create(String name,
Collection<LocalDateTime> data) |
|
static DateTimeColumn |
DateTimeColumn.create(String name,
Stream<LocalDateTime> stream) |
|
static DateTimeColumn |
DateTimeColumn.createInternal(String name,
long[] longs) |
For internal Tablesaw use only Returns a new column with the given name and data
|
DateTimeColumn |
DateTimeColumn.emptyCopy() |
Returns a copy of the receiver with no data.
|
DateTimeColumn |
DateTimeColumn.emptyCopy(int rowSize) |
Returns an empty copy of the receiver, with its internal storage initialized to the given row
size.
|
DateTimeColumn |
DateTimeColumn.fillWith(Iterable<LocalDateTime> iterable) |
|
DateTimeColumn |
DateTimeColumn.fillWith(Supplier<LocalDateTime> supplier) |
|
DateTimeColumn |
DateTimeColumn.fillWith(Iterator<LocalDateTime> iterator) |
|
DateTimeColumn |
DateTimeColumn.lag(int n) |
Returns a column of the same type and size as the receiver, containing the receivers values
offset by n.
|
DateTimeColumn |
DateTimeColumn.plus(long amountToAdd,
ChronoUnit unit) |
|
DateTimeColumn |
DateTimeColumn.removeMissing() |
Returns a copy of this column with the missing values removed
|
DateTimeColumn |
DateTimeColumn.set(int index,
long value) |
|
DateTimeColumn |
DateTimeColumn.set(int index,
LocalDateTime value) |
Sets the value at index row to the given value and return this column
|
DateTimeColumn |
DateTimeColumn.set(int row,
Column<LocalDateTime> column,
int sourceRow) |
Sets the value at row to the value at sourceRow in the given column and return this column
|
DateTimeColumn |
DateTimeColumn.set(Selection rowSelection,
LocalDateTime newValue) |
Conditionally update this column, replacing current values with newValue for all rows where the
current value matches the selection criteria
|
DateTimeColumn |
DateTimeColumn.setMissing(int i) |
Sets the value at index i to the missing-value indicator for this column type, and return this
column
|
DateTimeColumn |
DateTimeColumn.subset(int[] rows) |
Return a column of the same type containing just those elements whose indexes are included in
the given array
|
DateTimeColumn |
DateTimeColumn.unique() |
Returns a column of the same type containing only the unique values
|
DateTimeColumn |
DateTimeColumn.where(Selection selection) |
Returns a new column containing the subset referenced by the
Selection |
Modifier and Type | Method | Description |
---|---|---|
default DateTimeColumn |
DateMapFunctions.atStartOfDay() |
|
default DateTimeColumn |
DateMapFunctions.atTime(LocalTime time) |
Returns a DateTime column where each value consists of the dates from this column combined with
the corresponding times from the other column
|
default DateTimeColumn |
DateMapFunctions.atTime(TimeColumn timeColumn) |
Returns a DateTime column where each value consists of the dates from this column combined with
the corresponding times from the other column
|
Modifier and Type | Method | Description |
---|---|---|
DateTimeColumn |
DateTimeColumnType.create(String name) |
|
DateTimeColumn |
DateTimeMapFunctions.lag(int n) |
|
default DateTimeColumn |
DateTimeMapFunctions.lead(int n) |
|
DateTimeColumn |
DateTimeMapFunctions.plus(long amountToAdd,
ChronoUnit unit) |
|
default DateTimeColumn |
DateTimeMapFunctions.plusDays(long amountToAdd) |
|
default DateTimeColumn |
DateTimeMapFunctions.plusHours(long amountToAdd) |
|
default DateTimeColumn |
DateTimeMapFunctions.plusMicros(long amountToAdd) |
|
default DateTimeColumn |
DateTimeMapFunctions.plusMillis(long amountToAdd) |
|
default DateTimeColumn |
DateTimeMapFunctions.plusMinutes(long amountToAdd) |
|
default DateTimeColumn |
DateTimeMapFunctions.plusMonths(long amountToAdd) |
|
default DateTimeColumn |
DateTimeMapFunctions.plusSeconds(long amountToAdd) |
|
default DateTimeColumn |
DateTimeMapFunctions.plusWeeks(long amountToAdd) |
|
default DateTimeColumn |
DateTimeMapFunctions.plusYears(long amountToAdd) |
Modifier and Type | Method | Description |
---|---|---|
default Selection |
DateTimeFilters.isAfter(DateTimeColumn column) |
|
default Selection |
DateTimeFilters.isBefore(DateTimeColumn column) |
|
default Selection |
DateTimeFilters.isEqualTo(DateTimeColumn column) |
|
default Selection |
DateTimeFilters.isNotEqualTo(DateTimeColumn column) |
|
default Selection |
DateTimeFilters.isOnOrAfter(DateTimeColumn column) |
|
default Selection |
DateTimeFilters.isOnOrBefore(DateTimeColumn column) |
Modifier and Type | Method | Description |
---|---|---|
default Selection |
TemporalFilters.eval(LongBiPredicate predicate,
DateTimeColumn otherColumn) |
Modifier and Type | Method | Description |
---|---|---|
T |
DateTimeFilterSpec.isAfter(DateTimeColumn column) |
|
Function<Table,Selection> |
DeferredDateTimeColumn.isAfter(DateTimeColumn column) |
|
T |
DateTimeFilterSpec.isBefore(DateTimeColumn column) |
|
Function<Table,Selection> |
DeferredDateTimeColumn.isBefore(DateTimeColumn column) |
|
T |
DateTimeFilterSpec.isEqualTo(DateTimeColumn column) |
|
Function<Table,Selection> |
DeferredDateTimeColumn.isEqualTo(DateTimeColumn column) |
|
T |
DateTimeFilterSpec.isNotEqualTo(DateTimeColumn column) |
|
Function<Table,Selection> |
DeferredDateTimeColumn.isNotEqualTo(DateTimeColumn column) |
|
T |
DateTimeFilterSpec.isOnOrAfter(DateTimeColumn column) |
|
Function<Table,Selection> |
DeferredDateTimeColumn.isOnOrAfter(DateTimeColumn column) |
|
T |
DateTimeFilterSpec.isOnOrBefore(DateTimeColumn column) |
|
Function<Table,Selection> |
DeferredDateTimeColumn.isOnOrBefore(DateTimeColumn column) |
Modifier and Type | Method | Description |
---|---|---|
DateTimeColumn |
Relation.dateTimeColumn(int columnIndex) |
Returns the DateTimeColumn at the given 0-based index if present.
|
DateTimeColumn |
Relation.dateTimeColumn(String columnName) |
Returns a DateTimeColumn with the given name if it is present in this Relation.
|
DateTimeColumn[] |
Relation.dateTimeColumns() |
Returns all DateTimeColumns in this Relation as an Array
|
Copyright © 2022. All rights reserved.