| java.lang.Object com.etymon.pj.object.BaseObject com.etymon.pj.object.PjObject com.etymon.pj.object.PjNull
PjNull | public class PjNull extends PjObject (Code) | | A representation of the PDF null type.
author: Nassib Nassar |
Constructor Summary | |
public | PjNull() Creates a null object. |
Method Summary | |
public Object | clone() Returns a deep copy of this object. | public boolean | equals(Object obj) Compares two PjNull objects for equality. | public long | writePdf(OutputStream os) Writes this object (null) to a stream in PDF format.
Parameters: os - the stream to write to. |
PjNull | public PjNull()(Code) | | Creates a null object.
|
clone | public Object clone()(Code) | | Returns a deep copy of this object.
a deep copy of this object. |
equals | public boolean equals(Object obj)(Code) | | Compares two PjNull objects for equality. They are
automatically considered to be equal if both objects are
truly instances of PjNull.
Parameters: obj - the reference object to compare to. true if this object is the same as obj, falseotherwise. |
writePdf | public long writePdf(OutputStream os) throws IOException(Code) | | Writes this object (null) to a stream in PDF format.
Parameters: os - the stream to write to. the number of bytes written. exception: IOException - if an I/O error occurs. |
|
|