org.apache.cassandra.loader
Class ColumnFamilyType

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

public class ColumnFamilyType
extends java.lang.Object

Java class for ColumnFamilyType complex type.

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

 <complexType name="ColumnFamilyType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="Column" type="{}ColumnType" maxOccurs="unbounded"/>
         <element name="SuperColumn" type="{}SuperColumnType"/>
         <element name="Directory" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="Delimiter" type="{http://www.w3.org/2001/XMLSchema}string"/>
       </sequence>
       <attribute name="Name" type="{http://www.w3.org/2001/XMLSchema}string" />
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  java.util.List<ColumnType> column
           
protected  java.lang.String delimiter
           
protected  java.lang.String directory
           
protected  java.lang.String name
           
protected  SuperColumnType superColumn
           
 
Constructor Summary
ColumnFamilyType()
           
 
Method Summary
 java.util.List<ColumnType> getColumn()
          Gets the value of the column property.
 java.lang.String getDelimiter()
          Gets the value of the delimiter property.
 java.lang.String getDirectory()
          Gets the value of the directory property.
 java.lang.String getName()
          Gets the value of the name property.
 SuperColumnType getSuperColumn()
          Gets the value of the superColumn property.
 void setDelimiter(java.lang.String value)
          Sets the value of the delimiter property.
 void setDirectory(java.lang.String value)
          Sets the value of the directory property.
 void setName(java.lang.String value)
          Sets the value of the name property.
 void setSuperColumn(SuperColumnType value)
          Sets the value of the superColumn property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

column

protected java.util.List<ColumnType> column

superColumn

protected SuperColumnType superColumn

directory

protected java.lang.String directory

delimiter

protected java.lang.String delimiter

name

protected java.lang.String name
Constructor Detail

ColumnFamilyType

public ColumnFamilyType()
Method Detail

getColumn

public java.util.List<ColumnType> getColumn()
Gets the value of the column property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the column property.

For example, to add a new item, do as follows:

    getColumn().add(newItem);
 

Objects of the following type(s) are allowed in the list ColumnType


getSuperColumn

public SuperColumnType getSuperColumn()
Gets the value of the superColumn property.

Returns:
possible object is SuperColumnType

setSuperColumn

public void setSuperColumn(SuperColumnType value)
Sets the value of the superColumn property.

Parameters:
value - allowed object is SuperColumnType

getDirectory

public java.lang.String getDirectory()
Gets the value of the directory property.

Returns:
possible object is String

setDirectory

public void setDirectory(java.lang.String value)
Sets the value of the directory property.

Parameters:
value - allowed object is String

getDelimiter

public java.lang.String getDelimiter()
Gets the value of the delimiter property.

Returns:
possible object is String

setDelimiter

public void setDelimiter(java.lang.String value)
Sets the value of the delimiter property.

Parameters:
value - allowed object is String

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


Copyright © 2009 The Apache Software Foundation