| Package | Description |
|---|---|
| org.jooq |
The
org.jooq package contains jOOQ's public API
This package mostly contains interfaces that are implemented by the
org.jooq.impl package. |
| org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes
This package provides implementations for the jOOQ API from
org.jooq, whose interfaces are constructed mostly through the
Factory class, which hides implementation facts from
the public API |
| org.jooq.util.mysql |
The
org.jooq.util.ase package contains classes related to the
SQLDialect.ORACLE dialect |
| Modifier and Type | Method and Description |
|---|---|
<E extends EnumType> |
DataType.asEnumDataType(Class<E> enumDataType)
Retrieve the data type for a given enum data type
|
| Modifier and Type | Method and Description |
|---|---|
<E extends EnumType> |
AbstractDataType.asEnumDataType(Class<E> enumDataType) |
| Modifier and Type | Method and Description |
|---|---|
static <E extends Enum<E> & EnumType> |
MySQLFactory.enumType(Class<E> type,
int index)
Get a field based
EnumType by its MySQL-specific index
If your MySQL enum type contains these three values: A, B, C
, then this will be the mapping of indexes to values:
Copyright © 2013. All Rights Reserved. |