public class Column extends Object implements Serializable
Java class for Column complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Column"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <all> <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="column_name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="data_type" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="character_maximum_length" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> <element name="numeric_precision" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> <element name="numeric_scale" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> <element name="ordinal_position" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> <element name="identity_generation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="is_nullable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> <element name="column_default" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </all> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected Integer |
characterMaximumLength |
protected String |
columnDefault |
protected String |
columnName |
protected String |
dataType |
protected String |
identityGeneration |
protected Boolean |
isNullable |
protected Integer |
numericPrecision |
protected Integer |
numericScale |
protected Integer |
ordinalPosition |
protected String |
tableCatalog |
protected String |
tableName |
protected String |
tableSchema |
Constructor and Description |
---|
Column() |
Modifier and Type | Method and Description |
---|---|
Integer |
getCharacterMaximumLength()
Gets the value of the characterMaximumLength property.
|
String |
getColumnDefault()
Gets the value of the columnDefault property.
|
String |
getColumnName()
Gets the value of the columnName property.
|
String |
getDataType()
Gets the value of the dataType property.
|
String |
getIdentityGeneration()
Gets the value of the identityGeneration property.
|
Integer |
getNumericPrecision()
Gets the value of the numericPrecision property.
|
Integer |
getNumericScale()
Gets the value of the numericScale property.
|
Integer |
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.
|
Boolean |
isIsNullable()
Gets the value of the isNullable property.
|
void |
setCharacterMaximumLength(Integer value)
Sets the value of the characterMaximumLength property.
|
void |
setColumnDefault(String value)
Sets the value of the columnDefault property.
|
void |
setColumnName(String value)
Sets the value of the columnName property.
|
void |
setDataType(String value)
Sets the value of the dataType property.
|
void |
setIdentityGeneration(String value)
Sets the value of the identityGeneration property.
|
void |
setIsNullable(Boolean value)
Sets the value of the isNullable property.
|
void |
setNumericPrecision(Integer value)
Sets the value of the numericPrecision property.
|
void |
setNumericScale(Integer value)
Sets the value of the numericScale property.
|
void |
setOrdinalPosition(Integer 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.
|
Column |
withCharacterMaximumLength(Integer value) |
Column |
withColumnDefault(String value) |
Column |
withColumnName(String value) |
Column |
withDataType(String value) |
Column |
withIdentityGeneration(String value) |
Column |
withIsNullable(Boolean value) |
Column |
withNumericPrecision(Integer value) |
Column |
withNumericScale(Integer value) |
Column |
withOrdinalPosition(Integer value) |
Column |
withTableCatalog(String value) |
Column |
withTableName(String value) |
Column |
withTableSchema(String value) |
protected String tableCatalog
protected String tableSchema
protected String tableName
protected String columnName
protected String dataType
protected Integer characterMaximumLength
protected Integer numericPrecision
protected Integer numericScale
protected Integer ordinalPosition
protected String identityGeneration
protected Boolean isNullable
protected String columnDefault
public String getTableCatalog()
String
public void setTableCatalog(String value)
value
- allowed object is
String
public String getTableSchema()
String
public void setTableSchema(String value)
value
- allowed object is
String
public String getTableName()
String
public void setTableName(String value)
value
- allowed object is
String
public String getColumnName()
String
public void setColumnName(String value)
value
- allowed object is
String
public String getDataType()
String
public void setDataType(String value)
value
- allowed object is
String
public Integer getCharacterMaximumLength()
Integer
public void setCharacterMaximumLength(Integer value)
value
- allowed object is
Integer
public Integer getNumericPrecision()
Integer
public void setNumericPrecision(Integer value)
value
- allowed object is
Integer
public Integer getNumericScale()
Integer
public void setNumericScale(Integer value)
value
- allowed object is
Integer
public Integer getOrdinalPosition()
Integer
public void setOrdinalPosition(Integer value)
value
- allowed object is
Integer
public String getIdentityGeneration()
String
public void setIdentityGeneration(String value)
value
- allowed object is
String
public Boolean isIsNullable()
Boolean
public void setIsNullable(Boolean value)
value
- allowed object is
Boolean
public String getColumnDefault()
String
public void setColumnDefault(String value)
value
- allowed object is
String
Copyright © 2017. All Rights Reserved.