Uses of Class
org.apache.cassandra.cql3.functions.NativeScalarFunction
-
Packages that use NativeScalarFunction Package Description org.apache.cassandra.cql3.functions org.apache.cassandra.cql3.functions.masking -
-
Uses of NativeScalarFunction in org.apache.cassandra.cql3.functions
Subclasses of NativeScalarFunction in org.apache.cassandra.cql3.functions Modifier and Type Class Description static class
BytesConversionFcts.FromBlobFunction
static class
BytesConversionFcts.ToBlobFunction
class
FromJsonFct
static class
TimeFcts.FloorDateFunction
Function that rounds a date down to the closest multiple of a duration.static class
TimeFcts.FloorTimestampFunction
Function that rounds a timestamp down to the closest multiple of a duration.static class
TimeFcts.FloorTimeUuidFunction
Function that rounds a timeUUID down to the closest multiple of a duration.static class
TimeFcts.TemporalConversionFunction
class
ToJsonFct
class
TokenFct
Fields in org.apache.cassandra.cql3.functions declared as NativeScalarFunction Modifier and Type Field Description static NativeScalarFunction
TimeFcts. floorTime
Function that rounds a time down to the closest multiple of a duration.Methods in org.apache.cassandra.cql3.functions that return NativeScalarFunction Modifier and Type Method Description static NativeScalarFunction
TimeFcts. toDate(TemporalType<?> type)
Creates a function that converts a value of the specified type into aDATE
.static NativeScalarFunction
TimeFcts. toTimestamp(TemporalType<?> type)
Creates a function that converts a value of the specified type into aTIMESTAMP
.static NativeScalarFunction
TimeFcts. toUnixTimestamp(TemporalType<?> type)
Creates a function that converts a value of the specified type into a UNIX timestamp. -
Uses of NativeScalarFunction in org.apache.cassandra.cql3.functions.masking
Subclasses of NativeScalarFunction in org.apache.cassandra.cql3.functions.masking Modifier and Type Class Description class
DefaultMaskingFunction
AMaskingFunction
that returns a fixed replacement value for the data type of its single argument.class
HashMaskingFunction
AMaskingFunction
that replaces the specified column value by its hash according to the specified algorithm.class
MaskingFunction
ANativeScalarFunction
that totally or partially replaces the original value of a column value, meant to obscure the real value of the column.class
NullMaskingFunction
AMaskingFunction
that always returns anull
column.class
PartialMaskingFunction
AMaskingFunction
applied to aStringType
value that, depending onPartialMaskingFunction.Kind
: Replaces each character between the supplied positions by the supplied padding character.class
ReplaceMaskingFunction
AMaskingFunction
that replaces the specified column value by a certain replacement value.
-