Uses of Class
org.deegree_impl.io.shpapi.DBaseException

Packages that use DBaseException
org.deegree_impl.io.shpapi   
 

Uses of DBaseException in org.deegree_impl.io.shpapi
 

Methods in org.deegree_impl.io.shpapi that throw DBaseException
 Feature ShapeFile.getFeatureByRecNo(int RecNo)
          returns the RecNo'th entry of the shape file as Feature.
 java.lang.String[] ShapeFile.getProperties()
          returns the properties (column headers) of the dBase-file
associated to the shape-file
 java.lang.String[] ShapeFile.getDataTypes()
          returns the datatype of each column of the database file
associated to the shape-file
 int[] ShapeFile.getDataLengths()
           
 java.lang.String[] ShapeFile.getDataTypes(java.lang.String[] fields)
          returns the datatype of each column of the dBase associated
to the shape-file specified by fields
 java.lang.Object[] ShapeFile.getRow(int rowNo)
          returns a row of the dBase-file
associated to the shape-file
 void ShapeFile.initDBaseFile(FeatureCollection fc)
           
 byte[] DBFHeader.getHeader()
          method: public byte[] getHeader() throws DBaseException returns the header as a byte array
 void DBFDataSection.setRecord(java.util.ArrayList recData)
          method: public setRecord(ArrayList recData) writes a data record to byte array representing the data section of the dBase file.
 void DBFDataSection.setRecord(int index, java.util.ArrayList recData)
          method: public setRecord(int index, ArrayList recData) writes a data record to byte array representing the data section of the dBase file.
 int DBaseFile.getRecordNum()
          method: getRecordNum()
Get the number of records in the table
 void DBaseFile.goTop()
          method: goTop()
Position the record pointer at the top of the table.
 boolean DBaseFile.nextRecord()
          method: nextRecord()
Advance the record pointer to the next record.
 java.lang.String DBaseFile.getColumn(java.lang.String col_name)
          method: getColumn(String col_name)
Retrieve a column's string value from the current row.
 java.lang.String[] DBaseFile.getProperties()
          method: public String[] getProperties()
returns the properties (column headers) of the dBase-file
 java.lang.String[] DBaseFile.getDataTypes()
          method: public String[] getDataTypes()
returns the datatype of each column of the database
 int DBaseFile.getDataLength(java.lang.String field)
          returns the size of a column
 java.lang.String[] DBaseFile.getDataTypes(java.lang.String[] fields)
          method: public String[] getDataTypes(String[] fields)
returns the datatype of each column of the database specified by fields
 Feature DBaseFile.getFRow(int rowNo)
          returns a row of the dBase-file as Feature containing a place holder (field name = "GEOM") for a geometry.
 java.lang.Object[] DBaseFile.getRow(int rowNo)
          method: public ArrayList getRow(int row)
returns a row of the dBase-file
 void DBaseFile.writeAllToFile()
          method: public void writeAllToFile() creates the dbase file and writes all data to it if the file specified by fname (s.o.) exists it will be deleted!
 void DBaseFile.setRecord(java.util.ArrayList recData)
          method: public setRecord(ArrayList recData) writes a data record to byte array representing the data section of the dBase file.
 void DBaseFile.setRecord(int index, java.util.ArrayList recData)
          method: public setRecord(int index, ArrayList recData) writes a data record to byte array representing the data section of the dBase file.
 

Constructors in org.deegree_impl.io.shpapi that throw DBaseException
FieldDescriptor(java.lang.String name, java.lang.String type, byte fieldlength, byte decimalcount)
          constructor recieves name and type of the field, the length of the field in bytes and the decimalcount. the decimalcount is only considered if type id "N" or "F", it's maxvalue if fieldlength - 2!
DBFHeader(FieldDescriptor[] fieldDesc)
          constructor retrieves number of fields
DBaseFile(java.lang.String url, FieldDescriptor[] fieldDesc)
          constructor
only for writing a dBase file