- 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 String
comment
protected String
constraintCatalog
protected String
constraintName
protected String
constraintSchema
protected TableConstraintType
constraintType
protected String
tableCatalog
protected String
tableName
protected String
tableSchema
-
Constructor Summary
Constructors Constructor Description TableConstraint()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
appendTo(XMLBuilder builder)
boolean
equals(Object that)
String
getComment()
Gets the value of the comment property.String
getConstraintCatalog()
Gets the value of the constraintCatalog property.String
getConstraintName()
Gets the value of the constraintName property.String
getConstraintSchema()
Gets the value of the constraintSchema property.TableConstraintType
getConstraintType()
Gets the value of the constraintType property.String
getTableCatalog()
Gets the value of the tableCatalog property.String
getTableName()
Gets the value of the tableName property.String
getTableSchema()
Gets the value of the tableSchema property.int
hashCode()
void
setComment(String value)
Sets the value of the comment property.void
setConstraintCatalog(String value)
Sets the value of the constraintCatalog property.void
setConstraintName(String value)
Sets the value of the constraintName property.void
setConstraintSchema(String value)
Sets the value of the constraintSchema property.void
setConstraintType(TableConstraintType value)
Sets the value of the constraintType property.void
setTableCatalog(String value)
Sets the value of the tableCatalog property.void
setTableName(String value)
Sets the value of the tableName property.void
setTableSchema(String value)
Sets the value of the tableSchema property.String
toString()
TableConstraint
withComment(String value)
TableConstraint
withConstraintCatalog(String value)
TableConstraint
withConstraintName(String value)
TableConstraint
withConstraintSchema(String value)
TableConstraint
withConstraintType(TableConstraintType value)
TableConstraint
withTableCatalog(String value)
TableConstraint
withTableName(String value)
TableConstraint
withTableSchema(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:
appendTo
in interfaceXMLAppendable
-
-