public class Column extends Object
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">
<attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="nullable" type="{http://www.w3.org/2001/XMLSchema}boolean" />
<attribute name="size" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
<attribute name="decimal-digits" type="{http://www.w3.org/2001/XMLSchema}string" />
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected String |
decimalDigits |
protected String |
name |
protected Boolean |
nullable |
protected long |
size |
protected String |
type |
| Constructor and Description |
|---|
Column() |
| Modifier and Type | Method and Description |
|---|---|
String |
getDecimalDigits()
Gets the value of the decimalDigits property.
|
String |
getName()
Gets the value of the name property.
|
long |
getSize()
Gets the value of the size property.
|
String |
getType()
Gets the value of the type property.
|
Boolean |
isNullable()
Gets the value of the nullable property.
|
void |
setDecimalDigits(String value)
Sets the value of the decimalDigits property.
|
void |
setName(String value)
Sets the value of the name property.
|
void |
setNullable(Boolean value)
Sets the value of the nullable property.
|
void |
setSize(long value)
Sets the value of the size property.
|
void |
setType(String value)
Sets the value of the type property.
|
protected String name
protected String type
protected Boolean nullable
protected long size
protected String decimalDigits
public String getName()
Stringpublic void setName(String value)
value - allowed object is
Stringpublic String getType()
Stringpublic void setType(String value)
value - allowed object is
Stringpublic Boolean isNullable()
Booleanpublic void setNullable(Boolean value)
value - allowed object is
Booleanpublic long getSize()
public void setSize(long value)
public String getDecimalDigits()
StringCopyright © 2019. All rights reserved.