Package | Description |
---|---|
org.apache.cassandra.cql3 | |
org.apache.cassandra.cql3.functions.types |
Contains pieces of the Java Driver that are needed to handle data types
in C* User-Defined-Functions/Aggregates.
|
Modifier and Type | Method and Description |
---|---|
LocalDate |
UntypedResultSet.Row.getDate(java.lang.String column) |
Modifier and Type | Method and Description |
---|---|
LocalDate |
LocalDate.add(int field,
int amount)
Return a new
LocalDate with the specified (signed) amount of time added to (or
subtracted from) the given Calendar field, based on the calendar's rules. |
static LocalDate |
LocalDate.fromDaysSinceEpoch(int daysSinceEpoch)
Builds a new instance from a number of days since January 1st, 1970 GMT.
|
static LocalDate |
LocalDate.fromMillisSinceEpoch(long millisSinceEpoch)
Builds a new instance from a number of milliseconds since January 1st, 1970 GMT.
|
LocalDate |
GettableByIndexData.getDate(int i)
Returns the
i th value as a date (without time). |
LocalDate |
AbstractGettableData.getDate(java.lang.String name)
Returns the value for
name as a date (without time). |
LocalDate |
GettableByNameData.getDate(java.lang.String name)
Returns the value for
name as a date (without time). |
Modifier and Type | Method and Description |
---|---|
static TypeCodec<LocalDate> |
TypeCodec.date()
Return the default codec for the CQL type
date . |
Modifier and Type | Method and Description |
---|---|
T |
SettableByIndexData.setDate(int i,
LocalDate v)
Set the
i th value to the provided date (without time). |
T |
SettableByNameData.setDate(java.lang.String name,
LocalDate v)
Sets the value for (all occurrences of) variable
name to the provided date (without
time). |
Copyright © 2009-2022 The Apache Software Foundation