All Packages Class Hierarchy This Package Previous Next Index
Class xBaseJ.Client.NumField
java.lang.Object
|
+----xBaseJ.Client.Field
|
+----xBaseJ.Client.NumField
- public class NumField
- extends Field
-
decPoint()
-
Deprecated.
-
getDecimalPositionCount()
-
-
getType()
-
-
put(double)
- sets the field contents.
-
put(long)
- sets the field contents.
-
put(String)
- sets the field contents.
-
type()
-
Deprecated.
type
public char type()
- Note: type() is deprecated.
use getType
- Returns:
- char 'N' indicating a numeric field
- Overrides:
- type in class Field
getType
public char getType()
- Returns:
- char 'N' indicating a numeric field
- Overrides:
- getType in class Field
decPoint
public int decPoint()
- Note: decPoint() is deprecated.
use getDecimalPostionCount
- Returns:
- int - the number of decimal positions
- Overrides:
- decPoint in class Field
getDecimalPositionCount
public int getDecimalPositionCount()
- Returns:
- int - the number of decimal positions
- Overrides:
- getDecimalPositionCount in class Field
put
public void put(String inValue) throws xBaseJException
- sets the field contents.
- Parameters:
- inValue - String
- Throws: xBaseJException
- most likely a formatting exception
- Overrides:
- put in class Field
put
public void put(long inValue) throws xBaseJException
- sets the field contents.
- Parameters:
- inValue - long
- Throws: xBaseJException
- most likely a formatting exception
put
public void put(double inValue) throws xBaseJException
- sets the field contents.
- Parameters:
- inValue - double
- Throws: xBaseJException
- most likely a formatting exception
All Packages Class Hierarchy This Package Previous Next Index