- java.lang.Object
-
- org.jooq.util.xml.jaxb.Index
-
- All Implemented Interfaces:
Serializable,XMLAppendable
public class Index extends Object implements Serializable, XMLAppendable
Java class for Index complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Index"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <all> <element name="index_catalog" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="index_schema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="index_name" type="{http://www.w3.org/2001/XMLSchema}string"/> <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="is_unique" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> <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 StringindexCatalogprotected StringindexNameprotected StringindexSchemaprotected BooleanisUniqueprotected StringtableCatalogprotected StringtableNameprotected StringtableSchema
-
Constructor Summary
Constructors Constructor Description Index()
-
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.StringgetIndexCatalog()Gets the value of the indexCatalog property.StringgetIndexName()Gets the value of the indexName property.StringgetIndexSchema()Gets the value of the indexSchema 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()BooleanisIsUnique()Gets the value of the isUnique property.voidsetComment(String value)Sets the value of the comment property.voidsetIndexCatalog(String value)Sets the value of the indexCatalog property.voidsetIndexName(String value)Sets the value of the indexName property.voidsetIndexSchema(String value)Sets the value of the indexSchema property.voidsetIsUnique(Boolean value)Sets the value of the isUnique 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()IndexwithComment(String value)IndexwithIndexCatalog(String value)IndexwithIndexName(String value)IndexwithIndexSchema(String value)IndexwithIsUnique(Boolean value)IndexwithTableCatalog(String value)IndexwithTableName(String value)IndexwithTableSchema(String value)
-
-
-
Field Detail
-
indexCatalog
protected String indexCatalog
-
indexSchema
protected String indexSchema
-
indexName
protected String indexName
-
tableCatalog
protected String tableCatalog
-
tableSchema
protected String tableSchema
-
tableName
protected String tableName
-
isUnique
protected Boolean isUnique
-
comment
protected String comment
-
-
Method Detail
-
getIndexCatalog
public String getIndexCatalog()
Gets the value of the indexCatalog property.- Returns:
- possible object is
String
-
setIndexCatalog
public void setIndexCatalog(String value)
Sets the value of the indexCatalog property.- Parameters:
value- allowed object isString
-
getIndexSchema
public String getIndexSchema()
Gets the value of the indexSchema property.- Returns:
- possible object is
String
-
setIndexSchema
public void setIndexSchema(String value)
Sets the value of the indexSchema property.- Parameters:
value- allowed object isString
-
getIndexName
public String getIndexName()
Gets the value of the indexName property.- Returns:
- possible object is
String
-
setIndexName
public void setIndexName(String value)
Sets the value of the indexName property.- Parameters:
value- allowed object isString
-
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
-
isIsUnique
public Boolean isIsUnique()
Gets the value of the isUnique property.- Returns:
- possible object is
Boolean
-
setIsUnique
public void setIsUnique(Boolean value)
Sets the value of the isUnique property.- Parameters:
value- allowed object isBoolean
-
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
-
appendTo
public final void appendTo(XMLBuilder builder)
- Specified by:
appendToin interfaceXMLAppendable
-
-