Package org.openforis.commons.io.flat
Interface FlatRecord
-
- All Known Implementing Classes:
CsvLine
public interface FlatRecord- Author:
- G. Miceli
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<String>getFieldNames()FlatDataStreamgetFlatDataStream()<T> TgetValue(int idx, Class<T> type)<T> TgetValue(String name, Class<T> type)<T> TgetValue(String string, Class<T> type, T object)booleanisEmpty()booleanisMissing(int idx)booleanisMissing(String name)Object[]toArray()String[]toStringArray()
-
-
-
Method Detail
-
toArray
Object[] toArray()
-
toStringArray
String[] toStringArray()
-
getFlatDataStream
FlatDataStream getFlatDataStream()
-
getValue
<T> T getValue(int idx, Class<T> type)
-
isMissing
boolean isMissing(int idx)
-
isMissing
boolean isMissing(String name)
-
isEmpty
boolean isEmpty()
-
-