org.rosuda.JRclient
Class RBool

java.lang.Object
  extended by org.rosuda.JRclient.RBool

public class RBool
extends java.lang.Object

Implementation of tri-state logical data type in R. The three states are TRUE, FALSE and NA. To obtain truly boolean value, you'll need to use isTRUE() or isFALSE() since there is no canonical representation of RBool in boolean

Version:
$Id: RBool.java 1330 2005-01-24 18:25:42Z urbaneks $

Constructor Summary
RBool(boolean b)
           
RBool(int i)
           
RBool(RBool r)
           
 
Method Summary
 boolean isFALSE()
           
 boolean isNA()
           
 boolean isTRUE()
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

RBool

public RBool(boolean b)

RBool

public RBool(RBool r)

RBool

public RBool(int i)
Method Detail

isNA

public boolean isNA()

isTRUE

public boolean isTRUE()

isFALSE

public boolean isFALSE()

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object