Package org.orekit.gnss.metric.ntrip
Class Record
- java.lang.Object
-
- org.orekit.gnss.metric.ntrip.Record
-
- Direct Known Subclasses:
CasterRecord,DataStreamRecord,NetworkRecord
public abstract class Record extends Object
Record in source table.- Since:
- 11.0
- Author:
- Luc Maisonobe
-
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected StringgetField(int index)Get one field from the parsed sourcetable.protected intgetFieldsNumber()Get the number of fields.StringgetMisc()Get miscellaneous information.abstract RecordTypegetRecordType()Get the type of record.
-
-
-
Constructor Detail
-
Record
protected Record(String line)
Build a record by parsing a source table line.- Parameters:
line- source table line
-
-
Method Detail
-
getRecordType
public abstract RecordType getRecordType()
Get the type of record.- Returns:
- type of record
-
getFieldsNumber
protected int getFieldsNumber()
Get the number of fields.- Returns:
- number of fields
-
getField
protected String getField(int index)
Get one field from the parsed sourcetable.- Parameters:
index- field index- Returns:
- field value
-
getMisc
public String getMisc()
Get miscellaneous information.- Returns:
- miscellaneous information
-
-