Uses of Class
com.solab.iso8583.IsoType
-
Packages that use IsoType Package Description com.solab.iso8583 com.solab.iso8583.codecs com.solab.iso8583.parse -
-
Uses of IsoType in com.solab.iso8583
Fields in com.solab.iso8583 with type parameters of type IsoType Modifier and Type Field Description static java.util.Set<IsoType>
IsoType. VARIABLE_LENGTH_BIN_TYPES
Methods in com.solab.iso8583 that return IsoType Modifier and Type Method Description IsoType
IsoValue. getType()
Returns the ISO type to which the value must be formatted.static IsoType
IsoType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IsoType[]
IsoType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.solab.iso8583 with parameters of type IsoType Modifier and Type Method Description IsoMessage
IsoMessage. setValue(int index, java.lang.Object value, IsoType t, int length)
Sets the specified value in the specified field, creating an IsoValue internally.<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.protected void
IsoValue. writeLengthHeader(int l, java.io.OutputStream outs, IsoType type, boolean binary, boolean forceStringEncoding, boolean forceHexadecimalLength)
Constructors in com.solab.iso8583 with parameters of type IsoType Constructor Description IsoValue(IsoType t, T value)
IsoValue(IsoType t, T val, int len)
IsoValue(IsoType t, T val, int len, boolean hexa)
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 IsoType in com.solab.iso8583.codecs
Methods in com.solab.iso8583.codecs with parameters of type IsoType Modifier and Type Method Description <T> CompositeField
CompositeField. addValue(T val, CustomField<T> encoder, IsoType t, int length)
-
Uses of IsoType in com.solab.iso8583.parse
Fields in com.solab.iso8583.parse declared as IsoType Modifier and Type Field Description protected IsoType
FieldParseInfo. type
Methods in com.solab.iso8583.parse that return IsoType Modifier and Type Method Description IsoType
FieldParseInfo. getType()
Returns the data type for the data to be parsed.Methods in com.solab.iso8583.parse with parameters of type IsoType 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.Constructors in com.solab.iso8583.parse with parameters of type IsoType Constructor Description AlphaNumericFieldParseInfo(IsoType t, int len)
DateTimeParseInfo(IsoType type, int length)
FieldParseInfo(IsoType t, int len)
Creates a new instance that parses a value of the specified type, with the specified length.LlbinParseInfo(IsoType t, int len)
LllbinParseInfo(IsoType t, int len)
LlllbinParseInfo(IsoType t, int len)
-