org.apache.cassandra.loader
Class ColumnType

java.lang.Object
  extended by org.apache.cassandra.loader.ColumnType

public class ColumnType
extends java.lang.Object

Java class for ColumnType complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="ColumnType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="Value" type="{}ValueType"/>
         <element name="Timestamp" type="{}TimestampType"/>
       </sequence>
       <attribute name="Name" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="Field" type="{http://www.w3.org/2001/XMLSchema}int" />
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  java.lang.Integer field
           
protected  java.lang.String name
           
protected  TimestampType timestamp
           
protected  ValueType value
           
 
Constructor Summary
ColumnType()
           
 
Method Summary
 java.lang.Integer getField()
          Gets the value of the field property.
 java.lang.String getName()
          Gets the value of the name property.
 TimestampType getTimestamp()
          Gets the value of the timestamp property.
 ValueType getValue()
          Gets the value of the value property.
 void setField(java.lang.Integer value)
          Sets the value of the field property.
 void setName(java.lang.String value)
          Sets the value of the name property.
 void setTimestamp(TimestampType value)
          Sets the value of the timestamp property.
 void setValue(ValueType value)
          Sets the value of the value property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

value

protected ValueType value

timestamp

protected TimestampType timestamp

name

protected java.lang.String name

field

protected java.lang.Integer field
Constructor Detail

ColumnType

public ColumnType()
Method Detail

getValue

public ValueType getValue()
Gets the value of the value property.

Returns:
possible object is ValueType

setValue

public void setValue(ValueType value)
Sets the value of the value property.

Parameters:
value - allowed object is ValueType

getTimestamp

public TimestampType getTimestamp()
Gets the value of the timestamp property.

Returns:
possible object is TimestampType

setTimestamp

public void setTimestamp(TimestampType value)
Sets the value of the timestamp property.

Parameters:
value - allowed object is TimestampType

getName

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

Returns:
possible object is String

setName

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

Parameters:
value - allowed object is String

getField

public java.lang.Integer getField()
Gets the value of the field property.

Returns:
possible object is Integer

setField

public void setField(java.lang.Integer value)
Sets the value of the field property.

Parameters:
value - allowed object is Integer


Copyright © 2009 The Apache Software Foundation