A C D E G M O P S V

A

AbstractGeneratorStrategy - Class in org.jooq.util
Common base class for convenience method abstraction
AbstractGeneratorStrategy() - Constructor for class org.jooq.util.AbstractGeneratorStrategy
 

C

close() - Method in class org.jooq.util.GenerationWriter
 
copyLarge(InputStream, OutputStream) - Static method in class org.jooq.util.GenerationTool
Copy bytes from a large (over 2GB) InputStream to an OutputStream.

D

DefaultGenerator - Class in org.jooq.util
A default implementation for code generation.
DefaultGenerator() - Constructor for class org.jooq.util.DefaultGenerator
 
DefaultGeneratorStrategy - Class in org.jooq.util
The default naming strategy for the DefaultGenerator
DefaultGeneratorStrategy() - Constructor for class org.jooq.util.DefaultGeneratorStrategy
 

E

execute() - Method in class org.jooq.util.GenerationTask
 

G

generate(Database) - Method in class org.jooq.util.DefaultGenerator
 
generate(Database) - Method in interface org.jooq.util.Generator
Do the code generation
generateDeprecated() - Method in class org.jooq.util.DefaultGenerator
 
generateDeprecated() - Method in interface org.jooq.util.Generator
Whether deprecated code should be generated
generateGeneratedAnnotation() - Method in class org.jooq.util.DefaultGenerator
 
generateGeneratedAnnotation() - Method in interface org.jooq.util.Generator
Whether the Generated annotation should be generated
generateInstanceFields() - Method in class org.jooq.util.DefaultGenerator
 
generateInstanceFields() - Method in interface org.jooq.util.Generator
Whether instance fields should be generated (as opposed to static fields)
generateJPAAnnotations() - Method in class org.jooq.util.DefaultGenerator
 
generateJPAAnnotations() - Method in interface org.jooq.util.Generator
Whether POJO's and records should be annotated with JPA annotations
generateNavigationMethods() - Method in class org.jooq.util.DefaultGenerator
 
generateNavigationMethods() - Method in interface org.jooq.util.Generator
Whether foreign key navigation methods should be generated
generatePojos() - Method in class org.jooq.util.DefaultGenerator
 
generatePojos() - Method in interface org.jooq.util.Generator
Whether POJO's should be generated in addition to records
generateRelations() - Method in class org.jooq.util.DefaultGenerator
 
generateRelations() - Method in interface org.jooq.util.Generator
Whether foreign key relations should be resolved
GenerationTask - Class in org.jooq.util
Class generation facility that can be invoked from ant.
GenerationTask() - Constructor for class org.jooq.util.GenerationTask
 
GenerationTool - Class in org.jooq.util
The GenerationTool takes care of generating Java code from a database schema.
GenerationTool() - Constructor for class org.jooq.util.GenerationTool
 
GenerationWriter - Class in org.jooq.util
A wrapper for a PrintWriter This wrapper postpones the actual write to the wrapped PrintWriter until all information about the target Java class is available.
GenerationWriter(File) - Constructor for class org.jooq.util.GenerationWriter
 
Generator - Interface in org.jooq.util
The Generator provides a basic interface for java code generation
GeneratorStrategy - Interface in org.jooq.util
A strategy for naming various artefacts generated from Definition's
GeneratorStrategy.Mode - Enum in org.jooq.util
The "mode" by which an artefact should be named
getFile(Definition) - Method in class org.jooq.util.AbstractGeneratorStrategy
 
getFile(Definition, GeneratorStrategy.Mode) - Method in class org.jooq.util.AbstractGeneratorStrategy
 
getFile(Definition) - Method in interface org.jooq.util.GeneratorStrategy
 
getFile(Definition, GeneratorStrategy.Mode) - Method in interface org.jooq.util.GeneratorStrategy
 
getFileName(Definition) - Method in class org.jooq.util.AbstractGeneratorStrategy
 
getFileName(Definition, GeneratorStrategy.Mode) - Method in class org.jooq.util.AbstractGeneratorStrategy
 
getFileName(Definition) - Method in interface org.jooq.util.GeneratorStrategy
 
getFileName(Definition, GeneratorStrategy.Mode) - Method in interface org.jooq.util.GeneratorStrategy
 
getFullJavaClassName(Definition) - Method in class org.jooq.util.AbstractGeneratorStrategy
 
getFullJavaClassName(Definition, GeneratorStrategy.Mode) - Method in class org.jooq.util.AbstractGeneratorStrategy
 
getFullJavaClassName(Definition) - Method in interface org.jooq.util.GeneratorStrategy
 
getFullJavaClassName(Definition, GeneratorStrategy.Mode) - Method in interface org.jooq.util.GeneratorStrategy
This is the same as calling getFullJavaClassName(definition, Mode.DEFAULT)
getFullJavaIdentifier(Definition) - Method in class org.jooq.util.AbstractGeneratorStrategy
 
getFullJavaIdentifier(Definition) - Method in interface org.jooq.util.GeneratorStrategy
This is applied to definitions that can result in singleton static and instance members.
getInstanceFields() - Method in class org.jooq.util.DefaultGeneratorStrategy
 
getInstanceFields() - Method in interface org.jooq.util.GeneratorStrategy
Whether fields are instance fields (as opposed to static fields)
getJavaClassName(Definition) - Method in class org.jooq.util.AbstractGeneratorStrategy
 
getJavaClassName(Definition, GeneratorStrategy.Mode) - Method in class org.jooq.util.DefaultGeneratorStrategy
 
getJavaClassName(Definition) - Method in interface org.jooq.util.GeneratorStrategy
This is the same as calling getJavaClassName(definition, Mode.DEFAULT)
getJavaClassName(Definition, GeneratorStrategy.Mode) - Method in interface org.jooq.util.GeneratorStrategy
 
getJavaGetterName(Definition) - Method in class org.jooq.util.AbstractGeneratorStrategy
 
getJavaGetterName(Definition, GeneratorStrategy.Mode) - Method in class org.jooq.util.DefaultGeneratorStrategy
 
getJavaGetterName(Definition) - Method in interface org.jooq.util.GeneratorStrategy
This is applied to definitions that can result in getters of a container.
getJavaGetterName(Definition, GeneratorStrategy.Mode) - Method in interface org.jooq.util.GeneratorStrategy
This is applied to definitions that can result in getters of a container.
getJavaIdentifier(Definition) - Method in class org.jooq.util.DefaultGeneratorStrategy
 
getJavaIdentifier(Definition) - Method in interface org.jooq.util.GeneratorStrategy
This is applied to definitions that can result in singleton static and instance members.
getJavaMemberName(Definition) - Method in class org.jooq.util.AbstractGeneratorStrategy
 
getJavaMemberName(Definition, GeneratorStrategy.Mode) - Method in class org.jooq.util.DefaultGeneratorStrategy
 
getJavaMemberName(Definition) - Method in interface org.jooq.util.GeneratorStrategy
The "java member name" is applied where a definition is used as a member (for POJOs) or as a method argument (for setters).
getJavaMemberName(Definition, GeneratorStrategy.Mode) - Method in interface org.jooq.util.GeneratorStrategy
The "java member name" is applied where a definition is used as a member (for POJOs) or as a method argument (for setters).
getJavaMethodName(Definition) - Method in class org.jooq.util.AbstractGeneratorStrategy
 
getJavaMethodName(Definition, GeneratorStrategy.Mode) - Method in class org.jooq.util.DefaultGeneratorStrategy
 
getJavaMethodName(Definition) - Method in interface org.jooq.util.GeneratorStrategy
This is applied to definitions that can result in methods.
getJavaMethodName(Definition, GeneratorStrategy.Mode) - Method in interface org.jooq.util.GeneratorStrategy
This is applied to definitions that can result in methods.
getJavaPackageName(Definition) - Method in class org.jooq.util.AbstractGeneratorStrategy
 
getJavaPackageName(Definition, GeneratorStrategy.Mode) - Method in class org.jooq.util.DefaultGeneratorStrategy
 
getJavaPackageName(Definition) - Method in interface org.jooq.util.GeneratorStrategy
This is the same as calling getJavaPackageName(definition, Mode.DEFAULT)
getJavaPackageName(Definition, GeneratorStrategy.Mode) - Method in interface org.jooq.util.GeneratorStrategy
 
getJavaSetterName(Definition) - Method in class org.jooq.util.AbstractGeneratorStrategy
 
getJavaSetterName(Definition, GeneratorStrategy.Mode) - Method in class org.jooq.util.DefaultGeneratorStrategy
 
getJavaSetterName(Definition) - Method in interface org.jooq.util.GeneratorStrategy
This is applied to definitions that can result in setters of a container.
getJavaSetterName(Definition, GeneratorStrategy.Mode) - Method in interface org.jooq.util.GeneratorStrategy
This is applied to definitions that can result in setters of a container.
getStrategy() - Method in class org.jooq.util.DefaultGenerator
 
getStrategy() - Method in interface org.jooq.util.Generator
Get this generator's underlying naming strategy
getTargetDirectory() - Method in class org.jooq.util.DefaultGenerator
 
getTargetDirectory() - Method in class org.jooq.util.DefaultGeneratorStrategy
 
getTargetDirectory() - Method in interface org.jooq.util.Generator
The target directory
getTargetDirectory() - Method in interface org.jooq.util.GeneratorStrategy
The target directory
getTargetPackage() - Method in class org.jooq.util.DefaultGenerator
 
getTargetPackage() - Method in class org.jooq.util.DefaultGeneratorStrategy
 
getTargetPackage() - Method in interface org.jooq.util.Generator
 
getTargetPackage() - Method in interface org.jooq.util.GeneratorStrategy
 

M

main(String[]) - Static method in class org.jooq.util.GenerationTool
 
main(Properties, String...) - Static method in class org.jooq.util.GenerationTool
 
main(Configuration) - Static method in class org.jooq.util.GenerationTool
 

O

org.jooq.util - package org.jooq.util
 

P

print(CharSequence) - Method in class org.jooq.util.GenerationWriter
 
print(Class<?>) - Method in class org.jooq.util.GenerationWriter
 
printInitialisationStatement(String) - Method in class org.jooq.util.GenerationWriter
 
printInitialisationStatementsPlaceholder() - Method in class org.jooq.util.GenerationWriter
 
println(CharSequence) - Method in class org.jooq.util.GenerationWriter
 
println() - Method in class org.jooq.util.GenerationWriter
 
printNewJavaObject(Object) - Method in class org.jooq.util.GenerationWriter
 
printOnlyOnce(Object) - Method in class org.jooq.util.GenerationWriter
 
printSerial() - Method in class org.jooq.util.GenerationWriter
 
printStaticInitialisationStatement(String) - Method in class org.jooq.util.GenerationWriter
 
printStaticInitialisationStatementsPlaceholder() - Method in class org.jooq.util.GenerationWriter
 
printSuppressWarningsPlaceholder() - Method in class org.jooq.util.GenerationWriter
 

S

setGenerateDeprecated(boolean) - Method in class org.jooq.util.DefaultGenerator
 
setGenerateDeprecated(boolean) - Method in interface org.jooq.util.Generator
Whether deprecated code should be generated
setGenerateGeneratedAnnotation(boolean) - Method in class org.jooq.util.DefaultGenerator
 
setGenerateGeneratedAnnotation(boolean) - Method in interface org.jooq.util.Generator
Whether the Generated annotation should be generated
setGenerateInstanceFields(boolean) - Method in class org.jooq.util.DefaultGenerator
 
setGenerateInstanceFields(boolean) - Method in interface org.jooq.util.Generator
Whether instance fields should be generated (as opposed to static fields)
setGenerateJPAAnnotations(boolean) - Method in class org.jooq.util.DefaultGenerator
 
setGenerateJPAAnnotations(boolean) - Method in interface org.jooq.util.Generator
Whether POJO's and records should be annotated with JPA annotations
setGenerateNavigationMethods(boolean) - Method in class org.jooq.util.DefaultGenerator
 
setGenerateNavigationMethods(boolean) - Method in interface org.jooq.util.Generator
Whether foreign key navigation methods should be generated
setGeneratePojos(boolean) - Method in class org.jooq.util.DefaultGenerator
 
setGeneratePojos(boolean) - Method in interface org.jooq.util.Generator
Whether POJO's should be generated in addition to records
setGenerateRelations(boolean) - Method in class org.jooq.util.DefaultGenerator
 
setGenerateRelations(boolean) - Method in interface org.jooq.util.Generator
Whether foreign key relations should be resolved
setGenerator(String) - Method in class org.jooq.util.GenerationTask
 
setGeneratordatabase(String) - Method in class org.jooq.util.GenerationTask
 
setGeneratordatabaseexcludes(String) - Method in class org.jooq.util.GenerationTask
 
setGeneratordatabaseincludes(String) - Method in class org.jooq.util.GenerationTask
 
setGeneratordatabaseinputschema(String) - Method in class org.jooq.util.GenerationTask
 
setGeneratordatabaseoutputschema(String) - Method in class org.jooq.util.GenerationTask
 
setGeneratorgenerategeneratedannotation(String) - Method in class org.jooq.util.GenerationTask
 
setGeneratorgenerateinstancefields(String) - Method in class org.jooq.util.GenerationTask
 
setGeneratorgeneraterecords(String) - Method in class org.jooq.util.GenerationTask
 
setGeneratorgeneraterelations(String) - Method in class org.jooq.util.GenerationTask
 
setGeneratorgenerateunsignedtypes(String) - Method in class org.jooq.util.GenerationTask
 
setGeneratortargetdirectory(String) - Method in class org.jooq.util.GenerationTask
 
setGeneratortargetpackage(String) - Method in class org.jooq.util.GenerationTask
 
setInstanceFields(boolean) - Method in class org.jooq.util.DefaultGeneratorStrategy
 
setInstanceFields(boolean) - Method in interface org.jooq.util.GeneratorStrategy
Whether fields are instance fields (as opposed to static fields)
setJdbcdriver(String) - Method in class org.jooq.util.GenerationTask
 
setJdbcpassword(String) - Method in class org.jooq.util.GenerationTask
 
setJdbcschema(String) - Method in class org.jooq.util.GenerationTask
 
setJdbcurl(String) - Method in class org.jooq.util.GenerationTask
 
setJdbcuser(String) - Method in class org.jooq.util.GenerationTask
 
setStrategy(GeneratorStrategy) - Method in class org.jooq.util.DefaultGenerator
 
setStrategy(GeneratorStrategy) - Method in interface org.jooq.util.Generator
Set a naming strategy to this generator
setTargetDirectory(String) - Method in class org.jooq.util.DefaultGenerator
 
setTargetDirectory(String) - Method in class org.jooq.util.DefaultGeneratorStrategy
 
setTargetDirectory(String) - Method in interface org.jooq.util.Generator
Initialise the target directory
setTargetDirectory(String) - Method in interface org.jooq.util.GeneratorStrategy
Initialise the target directory
setTargetPackage(String) - Method in class org.jooq.util.DefaultGenerator
 
setTargetPackage(String) - Method in class org.jooq.util.DefaultGeneratorStrategy
 
setTargetPackage(String) - Method in interface org.jooq.util.Generator
Initialise the target package name
setTargetPackage(String) - Method in interface org.jooq.util.GeneratorStrategy
Initialise the target package name
suppressWarnings(String) - Method in class org.jooq.util.GenerationWriter
 

V

valueOf(String) - Static method in enum org.jooq.util.GeneratorStrategy.Mode
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.jooq.util.GeneratorStrategy.Mode
Returns an array containing the constants of this enum type, in the order they are declared.

A C D E G M O P S V

Copyright © 2012. All Rights Reserved.