commons
b2007101701

クラス
org.phosphoresce.commons.csv.CSVRecordList の使用

CSVRecordList を使用しているパッケージ
org.phosphoresce.commons.csv   
 

org.phosphoresce.commons.csv での CSVRecordList の使用
 

CSVRecordList を返す org.phosphoresce.commons.csv のメソッド
 CSVRecordList CSVRecordList.subList(int fromIndex, int toIndex)
          指定されたインデックス範囲のCSVレコードリストを取得します。
static CSVRecordList CSVManager.createRecordList(java.lang.String value)
          指定されたCSV形式の文字列をCSVレコードリストオブジェクトとして提供します。
static CSVRecordList CSVManager.createRecordList(java.io.File file)
          指定されたFileオブジェクトからCSV形式の文字列を読み込みCSVレコードリストオブジェクトとして提供します。
static CSVRecordList CSVManager.createRecordList(java.io.InputStream is)
          指定されたInputStreamオブジェクトからCSV形式の文字列を読み込みCSVレコードリストオブジェクトとして提供します。
 

CSVRecordList 型のパラメータを持つ org.phosphoresce.commons.csv のメソッド
 boolean CSVRecordList.containsAll(CSVRecordList list)
          指定されたCSVレコードリスト内容が全て保持されているか判定します。
 boolean CSVRecordList.addAll(CSVRecordList list)
          指定されたCSVレコードリストを全て追加します。
 boolean CSVRecordList.addAll(int index, CSVRecordList list)
          指定されたCSVレコードリストを指定位置に全て追加します。
 boolean CSVRecordList.retainAll(CSVRecordList list)
          指定されたCSVレコードリストリストに格納されている要素のみを残してリストを編集します。
 boolean CSVRecordList.removeAll(CSVRecordList list)
          指定されたCSVレコードリストに格納されているすべての要素をリストから削除します。
static void CSVManager.save(CSVRecordList list, java.lang.String path)
          指定されたファイルパスに対してCSVRecordListオブジェクトの内容を出力します。
static void CSVManager.save(CSVRecordList list, java.io.File file)
          指定されたFileオブジェクトに対してCSVRecordListオブジェクトの内容を出力します。
static void CSVManager.save(CSVRecordList list, java.io.OutputStream os)
          指定されたOutputStreamオブジェクトに対してCSVRecordListオブジェクトの内容を出力します。
 

CSVRecordList 型のパラメータを持つ org.phosphoresce.commons.csv のコンストラクタ
CSVRecordList(CSVRecordList list)
          コンストラクタ
 


commons
b2007101701