org.limn.data
Class RAFParser
java.lang.Object
|
+--org.limn.data.RAFParser
- public class RAFParser
- extends java.lang.Object
RAFParser is a class of static methods used for parsing and preparing
file information to be used by the RAFDAta object. The specified file
is scaned for minmax values. regions are marked to be used as buffer
sections.
a boolean can be used to indicate that the file should be used without
any buffering, this allows for a more conservative way to load whole data
sets a line at a time. This is much slower to load, but doesnt need twice
the size of the data to do it.
|
Method Summary |
static LimnData |
parseFile(java.lang.String name)
file name only will indicate that dataset should be
loaded completely. |
static LimnData |
parseFile(java.lang.String name,
int rowBuffer)
file name and buffersize will return a RAFData object
with the indicated buffer size |
static LimnData |
parseFile(java.lang.String name,
int rowBuffer,
boolean whole)
|
| Methods inherited from class java.lang.Object |
equals,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
RAFParser
public RAFParser()
parseFile
public static LimnData parseFile(java.lang.String name)
- file name only will indicate that dataset should be
loaded completely.
parseFile
public static LimnData parseFile(java.lang.String name,
int rowBuffer)
- file name and buffersize will return a RAFData object
with the indicated buffer size
parseFile
public static LimnData parseFile(java.lang.String name,
int rowBuffer,
boolean whole)