Uses of Class
com.solab.iso8583.parse.FieldParseInfo
-
Packages that use FieldParseInfo Package Description com.solab.iso8583 com.solab.iso8583.codecs com.solab.iso8583.parse -
-
Uses of FieldParseInfo in com.solab.iso8583
Fields in com.solab.iso8583 with type parameters of type FieldParseInfo Modifier and Type Field Description protected java.util.Map<java.lang.Integer,java.util.Map<java.lang.Integer,FieldParseInfo>>
MessageFactory. parseMap
Stores the information needed to parse messages sorted by type.Method parameters in com.solab.iso8583 with type arguments of type FieldParseInfo Modifier and Type Method Description void
MessageFactory. setParseMap(int type, java.util.Map<java.lang.Integer,FieldParseInfo> map)
Sets a map with the fields that are to be expected when parsing a certain type of message. -
Uses of FieldParseInfo in com.solab.iso8583.codecs
Methods in com.solab.iso8583.codecs that return types with arguments of type FieldParseInfo Modifier and Type Method Description java.util.List<FieldParseInfo>
CompositeField. getParsers()
Methods in com.solab.iso8583.codecs with parameters of type FieldParseInfo Modifier and Type Method Description CompositeField
CompositeField. addParser(FieldParseInfo fpi)
Method parameters in com.solab.iso8583.codecs with type arguments of type FieldParseInfo Modifier and Type Method Description void
CompositeField. setParsers(java.util.List<FieldParseInfo> fpis)
-
Uses of FieldParseInfo in com.solab.iso8583.parse
Subclasses of FieldParseInfo in com.solab.iso8583.parse Modifier and Type Class Description class
AlphaNumericFieldParseInfo
This is the common abstract superclass to parse ALPHA and NUMERIC field types.class
AlphaParseInfo
This is the class used to parse ALPHA fields.class
AmountParseInfo
This class is used to parse AMOUNT fields.class
BcdLengthLlbinParseInfo
Custom class to parse fields of type LLBCDBIN with BCD length.class
BcdLengthLllbinParseInfo
Custom class to parse fields of type LLLBCDBIN with BCD length.class
BcdLengthLlllbinParseInfo
Custom class to parse fields of type LLLLBCDBIN with BCD length.class
BinaryParseInfo
This class is used to parse fields of type BINARY.class
Date10ParseInfo
This class is used to parse fields of type DATE10.class
Date12ParseInfo
Blabla.class
Date14ParseInfo
Blabla.class
Date4ParseInfo
This class is used to parse fields of type DATE4.class
Date6ParseInfo
Parser for fields of type DATE6.class
DateExpParseInfo
This class is used to parse fields of type DATE_EXP.class
DateTimeParseInfo
Abstract class for date/time parsers.class
LlbinParseInfo
This class is used to parse fields of type LLBIN.class
LllbinParseInfo
This class is used to parse fields of type LLLBIN.class
LlllbinParseInfo
This class is used to parse fields of type LLLLBIN.class
LlllvarParseInfo
Blabla.class
LllvarParseInfo
This class is used to parse fields of type LLLVAR.class
LlvarParseInfo
This class is used to parse fields of type LLVAR.class
NumericParseInfo
This class is used to parse NUMERIC fields.class
TimeParseInfo
This class is used to parse TIME fields.Methods in com.solab.iso8583.parse that return FieldParseInfo Modifier and Type Method Description static FieldParseInfo
FieldParseInfo. getInstance(IsoType t, int len, java.lang.String encoding)
Returns a new FieldParseInfo instance that can parse the specified type.protected static <T extends IsoMessage>
FieldParseInfoConfigParser. getParser(org.w3c.dom.Element f, MessageFactory<T> mfact)
-