|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectucar.unidata.gis.shapefile.DbaseData
public class DbaseData
Class DbaseData
| Field Summary | |
|---|---|
static int |
TYPE_BOOLEAN
Data is an array of booleans (boolean[]). |
static int |
TYPE_CHAR
Character type data (String[]). |
static int |
TYPE_NUMERIC
Data is an array of doubles (double[]). |
| Method Summary | |
|---|---|
List |
asList()
_more_ |
boolean |
getBoolean(int i)
Method to retrieve a boolean for this field |
boolean[] |
getBooleans()
Method to retrieve a booleans array for this field |
Object |
getData(int i)
Method to retrieve data for this field |
double |
getDouble(int i)
Method to retrieve a double for this field |
double[] |
getDoubles()
Method to retrieve the double array for this field |
int |
getNumRec()
|
String |
getString(int i)
Method to retrieve a String for this field |
String[] |
getStrings()
Method to retrieve an array of Strings for this field |
int |
getType()
Method to return the type of data for the field |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final int TYPE_CHAR
public static final int TYPE_NUMERIC
public static final int TYPE_BOOLEAN
| Method Detail |
|---|
public int getType()
public double[] getDoubles()
public double getDouble(int i)
i - index of desired double, assumes 0 < i < getNumRec()
public boolean[] getBooleans()
public boolean getBoolean(int i)
i - index of desired boolean, assumes 0 < i < getNumRec()
public String[] getStrings()
public String getString(int i)
i - index of desired String, assumes 0 < i < getNumRec()
public List asList()
public Object getData(int i)
i - index of desired String, assumes 0 < i < getNumRec()
public int getNumRec()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||