Uses of Class
com.solab.iso8583.IsoValue

Packages that use IsoValue
com.solab.iso8583 This package contains the main framework classes. 
com.solab.iso8583.parse This package contains the classes used for parsing the XML configuration files to set up a MessageFactory, and also for storing the parse information for each field depending on the type of message. 
 

Uses of IsoValue in com.solab.iso8583
 

Methods in com.solab.iso8583 that return IsoValue
 IsoValue<T> IsoValue.clone()
          Returns a copy of the receiver that references the same value object.
 IsoValue<?> IsoMessage.getField(int field)
          Returns the IsoValue for the specified field.
 

Methods in com.solab.iso8583 with parameters of type IsoValue
 void IsoMessage.setField(int index, IsoValue<?> field)
          Stored the field in the specified index.
 

Uses of IsoValue in com.solab.iso8583.parse
 

Methods in com.solab.iso8583.parse that return IsoValue
<T> IsoValue<?>
FieldParseInfo.parse(byte[] buf, int pos, CustomField<T> custom)
          Parses the character data from the buffer and returns the IsoValue with the correct data type in it.
<T> IsoValue<?>
FieldParseInfo.parseBinary(byte[] buf, int pos, CustomField<T> custom)
          Parses binary data from the buffer, creating and returning an IsoValue of the configured type and length.