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 LocalDateUntypedResultSet.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 LocalDateLocalDate. add(int field, int amount)Return a newLocalDatewith the specified (signed) amount of time added to (or subtracted from) the givenCalendarfield, based on the calendar's rules.static LocalDateLocalDate. fromDaysSinceEpoch(int daysSinceEpoch)Builds a new instance from a number of days since January 1st, 1970 GMT.static LocalDateLocalDate. fromMillisSinceEpoch(long millisSinceEpoch)Builds a new instance from a number of milliseconds since January 1st, 1970 GMT.LocalDateAbstractGettableData. getDate(java.lang.String name)Returns the value fornameas a date (without time).LocalDateGettableByIndexData. getDate(int i)Returns theith value as a date (without time).LocalDateGettableByNameData. getDate(java.lang.String name)Returns the value fornameas 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 TSettableByIndexData. setDate(int i, LocalDate v)Set theith value to the provided date (without time).TSettableByNameData. setDate(java.lang.String name, LocalDate v)Sets the value for (all occurrences of) variablenameto the provided date (without time).
-