- All Superinterfaces:
Definition
- All Known Subinterfaces:
UDTDefinition
- All Known Implementing Classes:
AbstractPackageDefinition,AbstractUDTDefinition,PostgresUDTDefinition,XMLPackageDefinition
An interface defining a package in a database schema
- Author:
- Lukas Eder
-
Method Summary
Modifier and TypeMethodDescriptionFetch all constants from the package.Fetch all routines from the package.getUDTs()Fetch all UDTs from the package.Methods inherited from interface org.jooq.meta.Definition
getCatalog, getComment, getDatabase, getDefinitionPath, getInputName, getName, getOutputName, getOverload, getPackage, getPartiallyQualifiedNames, getQualifiedInputName, getQualifiedInputNamePart, getQualifiedName, getQualifiedNamePart, getQualifiedOutputName, getQualifiedOutputNamePart, getSchema, getSource, isSynthetic
-
Method Details
-
getRoutines
List<RoutineDefinition> getRoutines()Fetch all routines from the package. -
getUDTs
List<UDTDefinition> getUDTs()Fetch all UDTs from the package. -
getConstants
List<AttributeDefinition> getConstants()Fetch all constants from the package.
-