Package org.beanio.stream
Interface RecordMarshaller
-
- All Known Implementing Classes:
CsvRecordParser
,DelimitedRecordParser
,FixedLengthRecordParser
,JsonRecordMarshaller
,XmlRecordMarshaller
public interface RecordMarshaller
Interface for marshalling a single record object.The class used to represent a record is specific to the format of a record. For example, a delimited record marshaller may use
Stringp[]
.- Since:
- 2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
marshal(java.lang.Object record)
Marshals a single record object to aString
.
-