- java.lang.Object
- 
- org.jooq.conf.RenderMapping
 
- 
- All Implemented Interfaces:
- Serializable,- Cloneable,- XMLAppendable
 
 public class RenderMapping extends Object implements Serializable, Cloneable, XMLAppendable The runtime schema and table mapping.- See Also:
- Serialized Form
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected List<MappedCatalog>catalogsprotected StringdefaultCatalogprotected StringdefaultSchemaprotected List<MappedSchema>schemata
 - 
Constructor SummaryConstructors Constructor Description RenderMapping()
 - 
Method Summary
 
- 
- 
- 
Field Detail- 
defaultCatalogprotected String defaultCatalog 
 - 
defaultSchemaprotected String defaultSchema 
 - 
catalogsprotected List<MappedCatalog> catalogs 
 - 
schemataprotected List<MappedSchema> schemata 
 
- 
 - 
Method Detail- 
getDefaultCatalogpublic String getDefaultCatalog() The default catalog as defined inNamed.getName().This catalog will be omitted in rendered SQL. 
 - 
setDefaultCatalogpublic void setDefaultCatalog(String value) The default catalog as defined inNamed.getName().This catalog will be omitted in rendered SQL. 
 - 
getDefaultSchemapublic String getDefaultSchema() The default schema as defined inNamed.getName().This schema will be omitted in rendered SQL. 
 - 
setDefaultSchemapublic void setDefaultSchema(String value) The default schema as defined inNamed.getName().This schema will be omitted in rendered SQL. 
 - 
getCatalogspublic List<MappedCatalog> getCatalogs() 
 - 
setCatalogspublic void setCatalogs(List<MappedCatalog> catalogs) 
 - 
getSchematapublic List<MappedSchema> getSchemata() 
 - 
setSchematapublic void setSchemata(List<MappedSchema> schemata) 
 - 
withDefaultCatalogpublic RenderMapping withDefaultCatalog(String value) The default catalog as defined inNamed.getName().This catalog will be omitted in rendered SQL. 
 - 
withDefaultSchemapublic RenderMapping withDefaultSchema(String value) The default schema as defined inNamed.getName().This schema will be omitted in rendered SQL. 
 - 
withCatalogspublic RenderMapping withCatalogs(MappedCatalog... values) 
 - 
withCatalogspublic RenderMapping withCatalogs(Collection<MappedCatalog> values) 
 - 
withCatalogspublic RenderMapping withCatalogs(List<MappedCatalog> catalogs) 
 - 
withSchematapublic RenderMapping withSchemata(MappedSchema... values) 
 - 
withSchematapublic RenderMapping withSchemata(Collection<MappedSchema> values) 
 - 
withSchematapublic RenderMapping withSchemata(List<MappedSchema> schemata) 
 - 
appendTopublic final void appendTo(XMLBuilder builder) - Specified by:
- appendToin interface- XMLAppendable
 
 
- 
 
-