Reader

org.beangle.commons.dbf.Reader
See theReader companion object
class Reader(dataInput: DataInput, val header: Header) extends Closeable

Attributes

See also
Companion
object
Graph
Supertypes
trait Closeable
trait AutoCloseable
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def canSeek: Boolean
override def close(): Unit

Attributes

Definition Classes
Closeable -> AutoCloseable
def nextRecord(): Array[Object]

Reads and returns the next row in the Dbf stream

Reads and returns the next row in the Dbf stream

Attributes

Returns

The next row as an Object array.

def seekToRecord(n: Int): Unit

Attempt to seek to a specified record index. If successful the record can be read by calling [[DbfReader# nextRecord ( )]].

Attempt to seek to a specified record index. If successful the record can be read by calling [[DbfReader# nextRecord ( )]].

Value parameters

n

The zero-based record index.

Attributes

Concrete fields

val header: Header