Uses of Interface
com.solab.iso8583.CustomFieldEncoder
-
Packages that use CustomFieldEncoder Package Description com.solab.iso8583 com.solab.iso8583.codecs -
-
Uses of CustomFieldEncoder in com.solab.iso8583
Subinterfaces of CustomFieldEncoder in com.solab.iso8583 Modifier and Type Interface Description interface
CustomBinaryField<T>
An extension of the CustomField interface, useful for binary fields.interface
CustomField<DataType>
Defines the behavior for a custom field value encoder/decoder.Methods in com.solab.iso8583 that return CustomFieldEncoder Modifier and Type Method Description CustomFieldEncoder<T>
IsoValue. getEncoder()
Returns the CustomFieldEncoder for this value.Methods in com.solab.iso8583 with parameters of type CustomFieldEncoder Modifier and Type Method Description <T> IsoMessage
IsoMessage. setValue(int index, T value, CustomFieldEncoder<T> encoder, IsoType t, int length)
Sets the specified value in the specified field, creating an IsoValue internally.Constructors in com.solab.iso8583 with parameters of type CustomFieldEncoder Constructor Description IsoValue(IsoType t, T val, int len, boolean hexa, CustomFieldEncoder<T> custom)
Creates a new instance that stores the specified value as the specified type.IsoValue(IsoType t, T val, int len, CustomFieldEncoder<T> custom)
IsoValue(IsoType t, T value, CustomFieldEncoder<T> custom)
Creates a new instance that stores the specified value as the specified type. -
Uses of CustomFieldEncoder in com.solab.iso8583.codecs
Classes in com.solab.iso8583.codecs that implement CustomFieldEncoder Modifier and Type Class Description class
BigIntBcdCodec
A custom field encoder/decoder to be used with LLBIN/LLLBIN fields that contain BigIntegers in BCD encoding.class
CompositeField
A codec to manage subfields inside a field of a certain type.class
LongBcdCodec
A custom field encoder/decoder to be used with LLBIN/LLLBIN fields that contain Longs in BCD encoding.
-