Uses of Interface
io.github.torand.fastersql.function.Function
Packages that use Function
Package
Description
Provides classes and interfaces related to aggregate, single row and system functions.
Provides classes and interfaces related to aggregate functions.
Provides classes and interfaces related to single row functions.
Provides classes and interfaces related to system functions.
-
Uses of Function in io.github.torand.fastersql.function
Subinterfaces of Function in io.github.torand.fastersql.functionModifier and TypeInterfaceDescriptioninterface
Defines a function that operates on a specific column (or no specific column). -
Uses of Function in io.github.torand.fastersql.function.aggregate
Subinterfaces of Function in io.github.torand.fastersql.function.aggregateModifier and TypeInterfaceDescriptioninterface
Defines a function that returns a single value based upon a set of other values fetched from multiple rows.Classes in io.github.torand.fastersql.function.aggregate that implement FunctionModifier and TypeClassDescriptionclass
Implements the average aggregate function.class
Implements the count aggregate function.class
Implements the count all aggregate function.class
Implements the maximum aggregate function.class
Implements the minimum aggregate function.class
Implements the sum aggregate function. -
Uses of Function in io.github.torand.fastersql.function.singlerow
Subinterfaces of Function in io.github.torand.fastersql.function.singlerowModifier and TypeInterfaceDescriptioninterface
Defines a function that returns a single value based upon one value from a single row.Classes in io.github.torand.fastersql.function.singlerow that implement FunctionModifier and TypeClassDescriptionclass
Implements the absolute value numeric function.class
Implements the ceiling numeric function.class
Implements the concatenation string function.class
Implements the floor numeric function.class
Implements the length string function.class
Implements the lower case string function.class
Implements the round numeric function.class
Implements the substring string function.class
Implements the timestamp/number to string conversion function.class
Implements the string to number conversion function.class
Implements the upper case string function. -
Uses of Function in io.github.torand.fastersql.function.system
Subinterfaces of Function in io.github.torand.fastersql.function.systemModifier and TypeInterfaceDescriptioninterface
Defines a function that returns a single value without operating on table rows.Classes in io.github.torand.fastersql.function.system that implement FunctionModifier and TypeClassDescriptionclass
Implements the current date system function.class
Implements the current time system function.class
Implements the current timestamp system function.