- java.lang.Object
-
- org.jooq.util.xml.jaxb.KeyColumnUsage
-
- All Implemented Interfaces:
Serializable
,XMLAppendable
public class KeyColumnUsage extends Object implements Serializable, XMLAppendable
Java class for KeyColumnUsage complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="KeyColumnUsage"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <all> <element name="column_name" type="{http://www.w3.org/2001/XMLSchema}string"/> <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="ordinal_position" type="{http://www.w3.org/2001/XMLSchema}int"/> <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"/> </all> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected String
columnName
protected String
constraintCatalog
protected String
constraintName
protected String
constraintSchema
protected int
ordinalPosition
protected String
tableCatalog
protected String
tableName
protected String
tableSchema
-
Constructor Summary
Constructors Constructor Description KeyColumnUsage()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
appendTo(XMLBuilder builder)
boolean
equals(Object that)
String
getColumnName()
Gets the value of the columnName 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.int
getOrdinalPosition()
Gets the value of the ordinalPosition 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
setColumnName(String value)
Sets the value of the columnName 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
setOrdinalPosition(int value)
Sets the value of the ordinalPosition 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()
KeyColumnUsage
withColumnName(String value)
KeyColumnUsage
withConstraintCatalog(String value)
KeyColumnUsage
withConstraintName(String value)
KeyColumnUsage
withConstraintSchema(String value)
KeyColumnUsage
withOrdinalPosition(int value)
KeyColumnUsage
withTableCatalog(String value)
KeyColumnUsage
withTableName(String value)
KeyColumnUsage
withTableSchema(String value)
-
-
-
Field Detail
-
columnName
protected String columnName
-
constraintCatalog
protected String constraintCatalog
-
constraintSchema
protected String constraintSchema
-
constraintName
protected String constraintName
-
ordinalPosition
protected int ordinalPosition
-
tableCatalog
protected String tableCatalog
-
tableSchema
protected String tableSchema
-
tableName
protected String tableName
-
-
Method Detail
-
getColumnName
public String getColumnName()
Gets the value of the columnName property.- Returns:
- possible object is
String
-
setColumnName
public void setColumnName(String value)
Sets the value of the columnName property.- Parameters:
value
- allowed object isString
-
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
-
getOrdinalPosition
public int getOrdinalPosition()
Gets the value of the ordinalPosition property.
-
setOrdinalPosition
public void setOrdinalPosition(int value)
Sets the value of the ordinalPosition property.
-
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
-
withColumnName
public KeyColumnUsage withColumnName(String value)
-
withConstraintCatalog
public KeyColumnUsage withConstraintCatalog(String value)
-
withConstraintSchema
public KeyColumnUsage withConstraintSchema(String value)
-
withConstraintName
public KeyColumnUsage withConstraintName(String value)
-
withOrdinalPosition
public KeyColumnUsage withOrdinalPosition(int value)
-
withTableCatalog
public KeyColumnUsage withTableCatalog(String value)
-
withTableSchema
public KeyColumnUsage withTableSchema(String value)
-
withTableName
public KeyColumnUsage withTableName(String value)
-
appendTo
public final void appendTo(XMLBuilder builder)
- Specified by:
appendTo
in interfaceXMLAppendable
-
-