Uses of Class
org.apache.cassandra.cql3.functions.types.LocalDate
-
Packages that use LocalDate 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. -
-
Uses of LocalDate in org.apache.cassandra.cql3
Methods in org.apache.cassandra.cql3 that return LocalDate Modifier and Type Method Description LocalDate
UntypedResultSet.Row. getDate(java.lang.String column)
-
Uses of LocalDate in org.apache.cassandra.cql3.functions.types
Methods in org.apache.cassandra.cql3.functions.types that return LocalDate Modifier and Type Method Description LocalDate
LocalDate. add(int field, int amount)
Return a newLocalDate
with the specified (signed) amount of time added to (or subtracted from) the givenCalendar
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
AbstractGettableData. getDate(java.lang.String name)
Returns the value forname
as a date (without time).LocalDate
GettableByIndexData. getDate(int i)
Returns thei
th value as a date (without time).LocalDate
GettableByNameData. getDate(java.lang.String name)
Returns the value forname
as a date (without time).Methods in org.apache.cassandra.cql3.functions.types that return types with arguments of type LocalDate Modifier and Type Method Description static TypeCodec<LocalDate>
TypeCodec. date()
Return the default codec for the CQL typedate
.Methods in org.apache.cassandra.cql3.functions.types with parameters of type LocalDate Modifier and Type Method Description T
SettableByIndexData. setDate(int i, LocalDate v)
Set thei
th value to the provided date (without time).T
SettableByNameData. setDate(java.lang.String name, LocalDate v)
Sets the value for (all occurrences of) variablename
to the provided date (without time).
-