All Packages Class Hierarchy This Package Previous Next Index
Class xBaseJ.Client.LogicalField
java.lang.Object
|
+----xBaseJ.Client.Field
|
+----xBaseJ.Client.LogicalField
- public class LogicalField
- extends Field
xBaseJ - java access to dBase files
Copyright 1997-8 - American Coders, LTD - Raleigh NC USA
All rights reserved
Currently supports only dBase III format DBF, DBT and NDX files
dBase IV format DBF, DBT, MDX and NDX files
Package expires on October 31, 1998
American Coders, Ltd
P. O. Box 97462
Raleigh, NC 27615 USA
1-919-846-2014
http://www.americancoders.com
- Version:
- 1.6.0
- Author:
- Joe McVerry, American Coders Ltd.
-
getBoolean()
-
-
getChar()
-
-
put(boolean)
- allows input true or false
-
put(char)
- allows input of Y, y, T, t and 1 for true, N, n, F, f, and 0 for false
-
put(String)
- allows input of Y, y, T, t and 1 for true, N, n, F, f, and 0 for false
-
type()
-
type
public char type()
- Returns:
- char 'L' indicating logical field
- Overrides:
- type in class Field
put
public void put(String inValue) throws xBaseJException
- allows input of Y, y, T, t and 1 for true, N, n, F, f, and 0 for false
- Parameters:
- String - - one character length string
- Throws: xBaseJException
- field value is not one of the allowable inputs
- Overrides:
- put in class Field
put
public void put(char inValue) throws xBaseJException
- allows input of Y, y, T, t and 1 for true, N, n, F, f, and 0 for false
- Parameters:
- char - - Y, y, T, t and 1 for true, N, n, F, f, and 0 for false
- Throws: xBaseJException
- field value is not one of the allowable inputs
put
public void put(boolean inValue)
- allows input true or false
- Parameters:
- boolean - - true or false
getChar
public char getChar()
- Returns:
- T for true and F for false
getBoolean
public boolean getBoolean()
- Returns:
- boolean true or false
All Packages Class Hierarchy This Package Previous Next Index