iso8211 0-1-0 by Weft

uk.co.weft.iso8211.values
Class LSOFBinary

java.lang.Object
  |
  +--uk.co.weft.iso8211.Value
        |
        +--uk.co.weft.iso8211.values.Binary
              |
              +--uk.co.weft.iso8211.values.LSOFBinary

public class LSOFBinary
extends Binary

a binary string, sent least significant byte first.

Version:
$Revision: 1.5 $ This revision: $Author: simon $
  $Log: LSOFBinary.java,v $
  Revision 1.5  2002/11/02 00:09:16  simon
  Promising, but still not there. Problems include not correctly finding
  the start of the next record.

  Revision 1.4  2002/11/01 14:46:09  simon
  Much better! Now parsing most fields reasonably well.

  Revision 1.3  2002/10/31 23:04:28  simon
  Not in all truth a lot of progress. I'm parsing the DDR OK but when I come
  to real records I'm still not parsing them, and the reason seems to be that
  I'm not associating the right formats with the right field types. I'm still
  finding this very opaque.

  Revision 1.2  2002/10/31 19:25:22  simon


  This package of work is to take a parser which correctly recognised
  all the record and field boundaries, and try to make it read actual
  data. The DDR is now reading correctly (I believe) but the data are
  not being read, primarily because (I think) I'm not correctly making
  use of the data I read from the DDR.

  Revision 1.1.1.1  2002/10/29 11:27:33  simon
  More or less parses


  
Author:
Simon Brooke (simon@jasmine.org.uk)

Fields inherited from class uk.co.weft.iso8211.values.Binary
imaginary, intValue, realValue, SUBTYPE_COMPLEX_FLOAT, SUBTYPE_REAL_FIXED, SUBTYPE_REAL_FLOAT, SUBTYPE_SIGNED_INT, SUBTYPE_UNSIGNED_INT
 
Fields inherited from class uk.co.weft.iso8211.Value
debug, delimiter, precision, subtype
 
Constructor Summary
LSOFBinary()
           
 
Method Summary
 void read(ISO8211InputStream in)
          Handle each of my subtypes
 
Methods inherited from class uk.co.weft.iso8211.values.Binary
toString
 
Methods inherited from class uk.co.weft.iso8211.Value
initialise
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

LSOFBinary

public LSOFBinary()
Method Detail

read

public void read(ISO8211InputStream in)
          throws java.io.IOException,
                 FormatException
Handle each of my subtypes
Overrides:
read in class Value

iso8211 0-1-0 by Weft