Package uk.co.terminological.rjava.types
Class RNull
java.lang.Object
uk.co.terminological.rjava.types.RNull
- All Implemented Interfaces:
Serializable
,RObject
In general you won;t see this class. Its possible to do things in R like x=list(a=NULL) in which case
the null value needs a placeholder in java. In general it is not like a java null which is used more like
an R NA value. For methods that return nothing use java void and not this class.
- Version:
- $Id: $Id
- Author:
- terminological
- See Also:
-
Constructor Details
-
RNull
public RNull()Constructor for RNull.
-
-
Method Details
-
toString
toString.
-
rCode
Derives the R code representation of this object. This is used for some objects as a wire serialisation (RList
andRNamedList
) to copy them accross to R. Other data types tend to use the raw primitives to copy. -
accept
accept.
- Specified by:
accept
in interfaceRObject
- Type Parameters:
X
- a X class- Parameters:
visitor
- aRObjectVisitor
object- Returns:
- a X object
-
equals
-