- 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 StringdefaultSchemaprotected List<MappedSchema>schemata
 - 
Constructor SummaryConstructors Constructor Description RenderMapping()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidappendTo(XMLBuilder builder)Objectclone()booleanequals(Object that)StringgetDefaultSchema()The default schema as defined inNamed.getName().List<MappedSchema>getSchemata()inthashCode()voidsetDefaultSchema(String value)Sets the value of the defaultSchema property.voidsetSchemata(List<MappedSchema> schemata)StringtoString()RenderMappingwithDefaultSchema(String value)RenderMappingwithSchemata(Collection<MappedSchema> values)RenderMappingwithSchemata(List<MappedSchema> schemata)RenderMappingwithSchemata(MappedSchema... values)
 
- 
- 
- 
Field Detail- 
defaultSchemaprotected String defaultSchema 
 - 
schemataprotected List<MappedSchema> schemata 
 
- 
 - 
Method Detail- 
getDefaultSchemapublic String getDefaultSchema() The default schema as defined inNamed.getName().This schema will be omitted in rendered SQL. - Returns:
- possible object is
     String
 
 - 
setDefaultSchemapublic void setDefaultSchema(String value) Sets the value of the defaultSchema property.- Parameters:
- value- allowed object is- String
 
 - 
getSchematapublic List<MappedSchema> getSchemata() 
 - 
setSchematapublic void setSchemata(List<MappedSchema> schemata) 
 - 
withDefaultSchemapublic RenderMapping withDefaultSchema(String value) 
 - 
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
 
 
- 
 
-