Scalax
|
|
scalax/io/CsvIterator.scala
]
class
CsvIterator(csv : java.io.Reader)
extends
scala.Iterator[scala.Array[java.lang.String]]Method Summary | |
def
|
arity
: Int
The number of fields each row should have. Default is 0, which means
any number.
|
def
|
commentStart
: Char
The comment start character. Default '#'. Only effective if comments is
true.
|
def
|
comments
: Boolean
If true, ignore blank lines and treat commentStart outside quotes as
starting a comment line. Default is false.
|
def
|
hasNext : Boolean |
def
|
next : scala.Array[java.lang.String] |
def
|
sep
: Char
The separator character, a comma by default, but could be overridden to
any character which is not whitespace or '"'.
|
Methods inherited from AnyRef | |
getClass, hashCode, equals, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Method Details |
def
sep : Char
def
arity : Int
def
comments : Boolean
def
commentStart : Char
def
hasNext : Boolean
def
next : scala.Array[java.lang.String]
Scalax
|
|