shared
Class Schema.StringNum

java.lang.Object
  |
  +--shared.Schema.StringNum
Enclosing class:
Schema

public class Schema.StringNum
extends java.lang.Object

String to Double transformation device.


Field Summary
 double dstr
          The Double value of the String.
 boolean isconverted
          TRUE if this String is transformed, FALSE otherwise.
 int num
          The Integer value of the transformed String.
 java.lang.String str
          The String to be transformed.
 
Constructor Summary
Schema.StringNum(java.lang.String s)
          Constructor.
 
Method Summary
 void convert()
          Converts the stored String value to a Double value and stores the value in dstr.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

num

public int num
The Integer value of the transformed String.

str

public java.lang.String str
The String to be transformed.

dstr

public double dstr
The Double value of the String.

isconverted

public boolean isconverted
TRUE if this String is transformed, FALSE otherwise.
Constructor Detail

Schema.StringNum

public Schema.StringNum(java.lang.String s)
Constructor.
Parameters:
s - The string to be transformed.
Method Detail

convert

public void convert()
Converts the stored String value to a Double value and stores the value in dstr.