iso8211 0-1-0 by Weft

uk.co.weft.iso8211.values
Class ExplicitPoint

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

public class ExplicitPoint
extends Value

a digit string where the decimal point position is explicit. I *think* this is a very complicated way of saying 'a real'.

Version:
$Revision: 1.3 $ This revision: $Author: simon $
  $Log: ExplicitPoint.java,v $
  Revision 1.3  2002/11/04 14:11:15  simon
  Now generating (some) XML. Tidy up for first public release.

  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.Value
debug, delimiter, precision, subtype
 
Constructor Summary
ExplicitPoint()
           
 
Method Summary
 void read(ISO8211InputStream in)
          Specialise this! Dummy does nothing except skip the right number of places on the stream to check we're still in sync
 java.lang.String toString()
          yes, I know anything can be rendered as a string, but a value explicitly can.
 
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

ExplicitPoint

public ExplicitPoint()
Method Detail

read

public void read(ISO8211InputStream in)
          throws java.io.IOException,
                 FormatException
Description copied from class: Value
Specialise this! Dummy does nothing except skip the right number of places on the stream to check we're still in sync
Overrides:
read in class Value

toString

public java.lang.String toString()
Description copied from class: Value
yes, I know anything can be rendered as a string, but a value explicitly can. You must over-ride this!
Overrides:
toString in class Value

iso8211 0-1-0 by Weft