Class DelimitedFieldFormat
- java.lang.Object
-
- org.beanio.internal.parser.format.flat.FlatFieldFormatSupport
-
- org.beanio.internal.parser.format.delimited.DelimitedFieldFormat
-
- All Implemented Interfaces:
FieldFormat
,FlatFieldFormat
public class DelimitedFieldFormat extends FlatFieldFormatSupport implements FieldFormat
AFieldFormat
implementation for a field in a delimited stream.- Since:
- 2.0
-
-
Constructor Summary
Constructors Constructor Description DelimitedFieldFormat()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
extractFieldText(UnmarshallingContext context, boolean reporting)
void
insertFieldText(MarshallingContext context, java.lang.String fieldText, boolean commit)
-
Methods inherited from class org.beanio.internal.parser.format.flat.FlatFieldFormatSupport
extract, getName, getPadding, getPosition, getSize, getUntil, insertField, insertValue, isLazy, isNillable, setLazy, setName, setPadding, setPosition, setUntil, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.beanio.internal.parser.FieldFormat
extract, getSize, insertField, insertValue, isLazy, isNillable
-
-
-
-
Method Detail
-
insertFieldText
public void insertFieldText(MarshallingContext context, java.lang.String fieldText, boolean commit)
- Specified by:
insertFieldText
in classFlatFieldFormatSupport
-
extractFieldText
public java.lang.String extractFieldText(UnmarshallingContext context, boolean reporting)
- Specified by:
extractFieldText
in classFlatFieldFormatSupport
-
-