org.plasma.text.ddl
Class Column

java.lang.Object
  extended by org.plasma.text.ddl.Column

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>
 


Field Summary
protected  String decimalDigits
           
protected  String name
           
protected  Boolean nullable
           
protected  long size
           
protected  String type
           
 
Constructor Summary
Column()
           
 
Method Summary
 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.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

name

protected String name

type

protected String type

nullable

protected Boolean nullable

size

protected long size

decimalDigits

protected String decimalDigits
Constructor Detail

Column

public Column()
Method Detail

getName

public String getName()
Gets the value of the name property.

Returns:
possible object is String

setName

public void setName(String value)
Sets the value of the name property.

Parameters:
value - allowed object is String

getType

public String getType()
Gets the value of the type property.

Returns:
possible object is String

setType

public void setType(String value)
Sets the value of the type property.

Parameters:
value - allowed object is String

isNullable

public Boolean isNullable()
Gets the value of the nullable property.

Returns:
possible object is Boolean

setNullable

public void setNullable(Boolean value)
Sets the value of the nullable property.

Parameters:
value - allowed object is Boolean

getSize

public long getSize()
Gets the value of the size property.


setSize

public void setSize(long value)
Sets the value of the size property.


getDecimalDigits

public String getDecimalDigits()
Gets the value of the decimalDigits property.

Returns:
possible object is String

setDecimalDigits

public void setDecimalDigits(String value)
Sets the value of the decimalDigits property.

Parameters:
value - allowed object is String


Copyright © 2014. All rights reserved.