- java.lang.Object
-
- org.jooq.util.xml.jaxb.ReferentialConstraint
-
- All Implemented Interfaces:
Serializable
,XMLAppendable
public class ReferentialConstraint extends Object implements Serializable, XMLAppendable
Java class for ReferentialConstraint complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ReferentialConstraint"> <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="unique_constraint_catalog" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="unique_constraint_schema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="unique_constraint_name" type="{http://www.w3.org/2001/XMLSchema}string"/> </all> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected String
constraintCatalog
protected String
constraintName
protected String
constraintSchema
protected String
uniqueConstraintCatalog
protected String
uniqueConstraintName
protected String
uniqueConstraintSchema
-
Constructor Summary
Constructors Constructor Description ReferentialConstraint()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
appendTo(XMLBuilder builder)
boolean
equals(Object that)
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.String
getUniqueConstraintCatalog()
Gets the value of the uniqueConstraintCatalog property.String
getUniqueConstraintName()
Gets the value of the uniqueConstraintName property.String
getUniqueConstraintSchema()
Gets the value of the uniqueConstraintSchema property.int
hashCode()
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
setUniqueConstraintCatalog(String value)
Sets the value of the uniqueConstraintCatalog property.void
setUniqueConstraintName(String value)
Sets the value of the uniqueConstraintName property.void
setUniqueConstraintSchema(String value)
Sets the value of the uniqueConstraintSchema property.String
toString()
ReferentialConstraint
withConstraintCatalog(String value)
ReferentialConstraint
withConstraintName(String value)
ReferentialConstraint
withConstraintSchema(String value)
ReferentialConstraint
withUniqueConstraintCatalog(String value)
ReferentialConstraint
withUniqueConstraintName(String value)
ReferentialConstraint
withUniqueConstraintSchema(String value)
-
-
-
Field Detail
-
constraintCatalog
protected String constraintCatalog
-
constraintSchema
protected String constraintSchema
-
constraintName
protected String constraintName
-
uniqueConstraintCatalog
protected String uniqueConstraintCatalog
-
uniqueConstraintSchema
protected String uniqueConstraintSchema
-
uniqueConstraintName
protected String uniqueConstraintName
-
-
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
-
getUniqueConstraintCatalog
public String getUniqueConstraintCatalog()
Gets the value of the uniqueConstraintCatalog property.- Returns:
- possible object is
String
-
setUniqueConstraintCatalog
public void setUniqueConstraintCatalog(String value)
Sets the value of the uniqueConstraintCatalog property.- Parameters:
value
- allowed object isString
-
getUniqueConstraintSchema
public String getUniqueConstraintSchema()
Gets the value of the uniqueConstraintSchema property.- Returns:
- possible object is
String
-
setUniqueConstraintSchema
public void setUniqueConstraintSchema(String value)
Sets the value of the uniqueConstraintSchema property.- Parameters:
value
- allowed object isString
-
getUniqueConstraintName
public String getUniqueConstraintName()
Gets the value of the uniqueConstraintName property.- Returns:
- possible object is
String
-
setUniqueConstraintName
public void setUniqueConstraintName(String value)
Sets the value of the uniqueConstraintName property.- Parameters:
value
- allowed object isString
-
withConstraintCatalog
public ReferentialConstraint withConstraintCatalog(String value)
-
withConstraintSchema
public ReferentialConstraint withConstraintSchema(String value)
-
withConstraintName
public ReferentialConstraint withConstraintName(String value)
-
withUniqueConstraintCatalog
public ReferentialConstraint withUniqueConstraintCatalog(String value)
-
withUniqueConstraintSchema
public ReferentialConstraint withUniqueConstraintSchema(String value)
-
withUniqueConstraintName
public ReferentialConstraint withUniqueConstraintName(String value)
-
appendTo
public final void appendTo(XMLBuilder builder)
- Specified by:
appendTo
in interfaceXMLAppendable
-
-