public class Target extends Object implements Serializable
| Modifier and Type | Field and Description |
|---|---|
protected Boolean |
clean |
protected String |
directory |
protected String |
encoding |
protected String |
packageName |
| Constructor and Description |
|---|
Target() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object that) |
String |
getDirectory()
The destination directory of your generated classes
|
String |
getEncoding()
The file encoding to be used with all output files.
|
String |
getPackageName()
The destination package of your generated classes (within the destination directory)
jOOQ may append the schema name to this package if generating multiple schemas,
e.g. org.jooq.generated.schema1, org.jooq.generated.schema2
|
int |
hashCode() |
Boolean |
isClean()
Whether the target package should be cleaned to contain only generated code after a generation run.
|
void |
setClean(Boolean value)
Sets the value of the clean property.
|
void |
setDirectory(String value)
Sets the value of the directory property.
|
void |
setEncoding(String value)
Sets the value of the encoding property.
|
void |
setPackageName(String value)
Sets the value of the packageName property.
|
String |
toString() |
Target |
withClean(Boolean value) |
Target |
withDirectory(String value) |
Target |
withEncoding(String value) |
Target |
withPackageName(String value) |
protected String packageName
protected String directory
protected String encoding
protected Boolean clean
public String getPackageName()
jOOQ may append the schema name to this package if generating multiple schemas, e.g. org.jooq.generated.schema1, org.jooq.generated.schema2
Stringpublic void setPackageName(String value)
value - allowed object is
Stringpublic String getDirectory()
Stringpublic void setDirectory(String value)
value - allowed object is
Stringpublic String getEncoding()
Stringpublic void setEncoding(String value)
value - allowed object is
Stringpublic Boolean isClean()
Booleanpublic void setClean(Boolean value)
value - allowed object is
BooleanCopyright © 2019. All rights reserved.