Uses of Annotation Interface
org.jooq.Stringly.UnquotedName

Packages that use Stringly.UnquotedName
Package
Description
This package contains jOOQ's implementation classes.
  • Uses of Stringly.UnquotedName in org.jooq.impl

    Method parameters in org.jooq.impl with annotations of type Stringly.UnquotedName
    Modifier and Type
    Method
    Description
    static <T> @NotNull AggregateFunction<T>
    DSL.aggregate(String name, Class<T> type, Field<?>... arguments)
    aggregate() can be used to access native or user-defined aggregate functions that are not yet or insufficiently supported by jOOQ.
    static <T> @NotNull AggregateFunction<T>
    DSL.aggregate(String name, DataType<T> type, Field<?>... arguments)
    aggregate() can be used to access native or user-defined aggregate functions that are not yet or insufficiently supported by jOOQ.
    static <T> @NotNull AggregateFunction<T>
    DSL.aggregateDistinct(String name, Class<T> type, Field<?>... arguments)
    aggregateDistinct() can be used to access native or user-defined aggregate functions that are not yet or insufficiently supported by jOOQ.
    static <T> @NotNull AggregateFunction<T>
    DSL.aggregateDistinct(String name, DataType<T> type, Field<?>... arguments)
    aggregateDistinct() can be used to access native or user-defined aggregate functions that are not yet or insufficiently supported by jOOQ.
    static <T> @NotNull Field<T>
    DSL.function(String name, Class<T> type, Collection<? extends Field<?>> arguments)
    function() can be used to access native or user-defined functions that are not yet or insufficiently supported by jOOQ.
    static <T> @NotNull Field<T>
    DSL.function(String name, Class<T> type, Field<?>... arguments)
    function() can be used to access native or user-defined functions that are not yet or insufficiently supported by jOOQ.
    static <T> @NotNull Field<T>
    DSL.function(String name, DataType<T> type, Collection<? extends Field<?>> arguments)
    function() can be used to access native or user-defined functions that are not yet or insufficiently supported by jOOQ.
    static <T> @NotNull Field<T>
    DSL.function(String name, DataType<T> type, Field<?>... arguments)
    function() can be used to access native or user-defined functions that are not yet or insufficiently supported by jOOQ.
    static @NotNull Name
    DSL.systemName(String unqualifiedName)
    Create a new SQL identifier using an unqualified, quoted name.
    static @NotNull Name
    DSL.systemName(String... qualifiedName)
    Create a new SQL identifier using a qualified, quoted name.
    static @NotNull Name
    DSL.systemName(Collection<String> qualifiedName)
    Create a new SQL identifier using a qualified, system name.
    static @NotNull Name
    DSL.unquotedName(String unqualifiedName)
    Create a new SQL identifier using an unqualified, quoted name.
    static @NotNull Name
    DSL.unquotedName(String... qualifiedName)
    Create a new SQL identifier using a qualified, quoted name.
    static @NotNull Name
    DSL.unquotedName(Collection<String> qualifiedName)
    Create a new SQL identifier using a qualified, quoted name.