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

Method Index

 o getBoolean()
 o getChar()
 o getType()
 o put(boolean)
allows input true or false
 o put(char)
allows input of Y, y, T, t and 1 for true, N, n, F, f, and 0 for false
 o put(String)
allows input of Y, y, T, t and 1 for true, N, n, F, f, and 0 for false
 o type()
Deprecated.

Methods

 o type
 public char type()
Note: type() is deprecated. use getType

Returns:
char 'L' indicating logical field
Overrides:
type in class Field
 o getType
 public char getType()
Returns:
char 'L' indicating logical field
Overrides:
getType in class Field
 o 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
 o 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
 o put
 public void put(boolean inValue)
allows input true or false

Parameters:
boolean - - true or false
 o getChar
 public char getChar()
Returns:
T for true and F for false
 o getBoolean
 public boolean getBoolean()
Returns:
boolean true or false

All Packages  Class Hierarchy  This Package  Previous  Next  Index