Uses of Interface
org.jooq.CharacterSet
-
Packages that use CharacterSet Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This package contains jOOQ's implementation classes. -
-
Uses of CharacterSet in org.jooq
Methods in org.jooq that return CharacterSet Modifier and Type Method Description @Nullable CharacterSet
DataType. characterSet()
Get the character set of this data type, ornull
if there is no character set, or if the default character set applies.Methods in org.jooq with parameters of type CharacterSet Modifier and Type Method Description @NotNull DataType<T>
DataType. characterSet(CharacterSet characterSet)
Return a new data type like this, with a new character set. -
Uses of CharacterSet in org.jooq.impl
Methods in org.jooq.impl that return CharacterSet Modifier and Type Method Description CharacterSet
DefaultDataType. characterSet()
static @NotNull CharacterSet
DSL. characterSet(String characterSet)
Create a character set by its unqualified name.static @NotNull CharacterSet
DSL. characterSet(Name characterSet)
Create a character set by its qualified name.
-