Package | Description |
---|---|
jahuwaldt.tools.tables |
Modifier and Type | Method and Description |
---|---|
FTableDatabase |
C81Reader.read(java.io.InputStream input)
Method that reads in C-81 airfoil aerodynamics formatted data
from the specified input stream and returns that data as an
FTableDatabase object.
|
FTableDatabase |
CSVReader.read(java.io.InputStream input)
Method that reads in specially organized CSV formatted data
from the specified input stream and returns that data as an
FTableDatabase object.
|
FTableDatabase |
FDAReader.read(java.io.InputStream input)
Method that reads in Functional Data Handling ASCII system (FDA)
formatted data from the specified input stream and returns that data as an
FTableDatabase object.
|
FTableDatabase |
FLABSavReader.read(java.io.InputStream input)
Method that reads in ART FlightLab SAV formatted data
from the specified input stream and returns that data as an
FTableDatabase object.
|
FTableDatabase |
FTableReader.read(java.io.InputStream input)
Interface for reading in data from an input stream
and returning that data as a list of DataSet objects.
|
FTableDatabase |
NASAReader.read(java.io.InputStream input)
Method that reads in NASA 2,3, or 4 argument table formatted data
from the specified input stream and returns that data as an
FTableDatabase object.
|
FTableDatabase |
OTISTableReader.read(java.io.InputStream input)
Method that reads in OTIS table formatted data
from the specified input stream and returns that data as an
FTableDatabase object.
|
FTableDatabase |
POSTTableReader.read(java.io.InputStream input)
Method that reads in POST table formatted data
from the specified input stream and returns that data as an
FTableDatabase object.
|
Modifier and Type | Method and Description |
---|---|
void |
FTableDatabase.putAll(FTableDatabase database)
Add the contents of the specified table database to this database.
|
void |
C81Reader.write(java.io.OutputStream output,
FTableDatabase tables)
Method for writing out all the data stored in the specified
list of FloatTable objects to the specified output stream.
|
void |
CSVReader.write(java.io.OutputStream output,
FTableDatabase tables)
Method for writing out all the data stored in the specified
list of FloatTable objects to the specified output stream in CSV format.
|
void |
FDAReader.write(java.io.OutputStream output,
FTableDatabase tables)
Method for writing out all the data stored in the specified
list of FloatTable objects to the specified output stream in FDA format.
|
void |
FLABSavReader.write(java.io.OutputStream output,
FTableDatabase tables)
Method for writing out all the data stored in the specified
list of FloatTable objects to the specified output stream in SAV format.
|
void |
FTableReader.write(java.io.OutputStream output,
FTableDatabase tables)
Interface for writing out all the data stored in the specified
list of FloatTable objects to the specified output stream.
|
void |
NASAReader.write(java.io.OutputStream output,
FTableDatabase tables)
Method for writing out all the data stored in the specified
list of FloatTable objects to the specified output stream in
NASA 2,3, or 4 argument multi-table format.
|
void |
OTISTableReader.write(java.io.OutputStream output,
FTableDatabase tables)
Method for writing out all the data stored in the specified
list of FloatTable objects to the specified output stream in OTIS table format.
|
void |
POSTTableReader.write(java.io.OutputStream output,
FTableDatabase tables)
Method for writing out all the data stored in the specified
list of FloatTable objects to the specified output stream in POST table format.
|