org.rosuda.JRclient
Class RBool

java.lang.Object
  extended byorg.rosuda.JRclient.RBool

public class RBool
extends 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,v 1.1 2005/10/05 20:20:16 eytanadar Exp $

Constructor Summary
RBool(boolean b)
           
RBool(int i)
           
RBool(RBool r)
           
 
Method Summary
 boolean isFALSE()
           
 boolean isNA()
           
 boolean isTRUE()
           
 String toString()
           
 
Methods inherited from class java.lang.Object
equals, 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 String toString()