|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.java.sen.util.CSVData
create CSV string.
Field Summary | |
protected java.util.LinkedList |
elements
|
Constructor Summary | |
CSVData()
Constructor for CSVData |
Method Summary | |
void |
append(java.lang.String element)
Append the specified element to the buffer. |
void |
clear()
remove all element. |
protected java.lang.String |
enquote(java.lang.String element)
|
void |
insert(int index,
java.lang.String element)
Insert the specified element to the buffer. |
static void |
main(java.lang.String[] args)
|
void |
remove(int index)
Removes the element at the specified position in the buffer. |
void |
set(int index,
java.lang.String element)
Replaces the element at the specified position in the buffer with the specified element. |
java.lang.String |
toString()
Return a string representation. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
protected java.util.LinkedList elements
Constructor Detail |
public CSVData()
Method Detail |
public void append(java.lang.String element)
element
- element to be appended.public void insert(int index, java.lang.String element)
index
- index at which the specified element is to be inserted.element
- element to be inserted.public void remove(int index)
index
- index at which the specified element is to be removed.public void set(int index, java.lang.String element)
index
- index of element to replace.element
- element to be stored at the specified position.public void clear()
public java.lang.String toString()
protected java.lang.String enquote(java.lang.String element)
public static void main(java.lang.String[] args) throws java.lang.Exception
java.lang.Exception
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |