- java.lang.Object
-
- org.jooq.util.xml.jaxb.TableConstraint
-
- All Implemented Interfaces:
Serializable,XMLAppendable
public class TableConstraint extends Object implements Serializable, XMLAppendable
Java class for TableConstraint complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="TableConstraint"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <all> <element name="constraint_catalog" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="constraint_schema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="constraint_name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="constraint_type" type="{http://www.jooq.org/xsd/jooq-meta-3.12.0.xsd}TableConstraintType"/> <element name="table_catalog" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="table_schema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="table_name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="comment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </all> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringcommentprotected StringconstraintCatalogprotected StringconstraintNameprotected StringconstraintSchemaprotected TableConstraintTypeconstraintTypeprotected StringtableCatalogprotected StringtableNameprotected StringtableSchema
-
Constructor Summary
Constructors Constructor Description TableConstraint()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidappendTo(XMLBuilder builder)booleanequals(Object that)StringgetComment()Gets the value of the comment property.StringgetConstraintCatalog()Gets the value of the constraintCatalog property.StringgetConstraintName()Gets the value of the constraintName property.StringgetConstraintSchema()Gets the value of the constraintSchema property.TableConstraintTypegetConstraintType()Gets the value of the constraintType property.StringgetTableCatalog()Gets the value of the tableCatalog property.StringgetTableName()Gets the value of the tableName property.StringgetTableSchema()Gets the value of the tableSchema property.inthashCode()voidsetComment(String value)Sets the value of the comment property.voidsetConstraintCatalog(String value)Sets the value of the constraintCatalog property.voidsetConstraintName(String value)Sets the value of the constraintName property.voidsetConstraintSchema(String value)Sets the value of the constraintSchema property.voidsetConstraintType(TableConstraintType value)Sets the value of the constraintType property.voidsetTableCatalog(String value)Sets the value of the tableCatalog property.voidsetTableName(String value)Sets the value of the tableName property.voidsetTableSchema(String value)Sets the value of the tableSchema property.StringtoString()TableConstraintwithComment(String value)TableConstraintwithConstraintCatalog(String value)TableConstraintwithConstraintName(String value)TableConstraintwithConstraintSchema(String value)TableConstraintwithConstraintType(TableConstraintType value)TableConstraintwithTableCatalog(String value)TableConstraintwithTableName(String value)TableConstraintwithTableSchema(String value)
-
-
-
Field Detail
-
constraintCatalog
protected String constraintCatalog
-
constraintSchema
protected String constraintSchema
-
constraintName
protected String constraintName
-
constraintType
protected TableConstraintType constraintType
-
tableCatalog
protected String tableCatalog
-
tableSchema
protected String tableSchema
-
tableName
protected String tableName
-
comment
protected String comment
-
-
Method Detail
-
getConstraintCatalog
public String getConstraintCatalog()
Gets the value of the constraintCatalog property.- Returns:
- possible object is
String
-
setConstraintCatalog
public void setConstraintCatalog(String value)
Sets the value of the constraintCatalog property.- Parameters:
value- allowed object isString
-
getConstraintSchema
public String getConstraintSchema()
Gets the value of the constraintSchema property.- Returns:
- possible object is
String
-
setConstraintSchema
public void setConstraintSchema(String value)
Sets the value of the constraintSchema property.- Parameters:
value- allowed object isString
-
getConstraintName
public String getConstraintName()
Gets the value of the constraintName property.- Returns:
- possible object is
String
-
setConstraintName
public void setConstraintName(String value)
Sets the value of the constraintName property.- Parameters:
value- allowed object isString
-
getConstraintType
public TableConstraintType getConstraintType()
Gets the value of the constraintType property.- Returns:
- possible object is
TableConstraintType
-
setConstraintType
public void setConstraintType(TableConstraintType value)
Sets the value of the constraintType property.- Parameters:
value- allowed object isTableConstraintType
-
getTableCatalog
public String getTableCatalog()
Gets the value of the tableCatalog property.- Returns:
- possible object is
String
-
setTableCatalog
public void setTableCatalog(String value)
Sets the value of the tableCatalog property.- Parameters:
value- allowed object isString
-
getTableSchema
public String getTableSchema()
Gets the value of the tableSchema property.- Returns:
- possible object is
String
-
setTableSchema
public void setTableSchema(String value)
Sets the value of the tableSchema property.- Parameters:
value- allowed object isString
-
getTableName
public String getTableName()
Gets the value of the tableName property.- Returns:
- possible object is
String
-
setTableName
public void setTableName(String value)
Sets the value of the tableName property.- Parameters:
value- allowed object isString
-
getComment
public String getComment()
Gets the value of the comment property.- Returns:
- possible object is
String
-
setComment
public void setComment(String value)
Sets the value of the comment property.- Parameters:
value- allowed object isString
-
withConstraintCatalog
public TableConstraint withConstraintCatalog(String value)
-
withConstraintSchema
public TableConstraint withConstraintSchema(String value)
-
withConstraintName
public TableConstraint withConstraintName(String value)
-
withConstraintType
public TableConstraint withConstraintType(TableConstraintType value)
-
withTableCatalog
public TableConstraint withTableCatalog(String value)
-
withTableSchema
public TableConstraint withTableSchema(String value)
-
withTableName
public TableConstraint withTableName(String value)
-
withComment
public TableConstraint withComment(String value)
-
appendTo
public final void appendTo(XMLBuilder builder)
- Specified by:
appendToin interfaceXMLAppendable
-
-