Uses of Class
anl.repast.gis.data.dbf.JDBFException

Packages that use JDBFException
anl.repast.gis.data.dbf   
 

Uses of JDBFException in anl.repast.gis.data.dbf
 

Methods in anl.repast.gis.data.dbf that throw JDBFException
 void DBFWriter.addRecord(java.lang.Object[] aobj)
          Writes a record to the DBF file.
 void DBFWriter.close()
          Closes the DBF file.
 java.lang.String JDBField.format(java.lang.Object obj)
          Formats a value to its String representation, based on the fields
 java.lang.Object[] DBFReader.nextRecord()
          Returns an array of objects, representing one record in the database file.
 java.lang.Object JDBField.parse(java.lang.String s)
          Parses a formatted String and returns an object of type, corresponding to this field.
 

Constructors in anl.repast.gis.data.dbf that throw JDBFException
DBFReader(java.io.InputStream inputstream)
          Opens a stream, containing DBF for reading.
DBFReader(java.lang.String s)
          Opens a DBF file for reading.
DBFWriter(java.io.OutputStream outputstream, JDBField[] ajdbfield)
          Opens an output stream for writing.
DBFWriter(java.lang.String s, JDBField[] ajdbfield)
          Opens a DBF file for writing.
DBFWriter(java.lang.String s, JDBField[] ajdbfield, java.lang.String s1)
          Opens a DBF file for writing, bytes in DBF will be converted from UNICODE to national charset.
JDBField(java.lang.String s, char c, int i, int j)
          Construct a database field with a given name, type, length, and decimal count.