| |
|
| java.lang.Object com.lowagie.text.pdf.PdfObject com.lowagie.text.pdf.PdfBoolean
PdfBoolean | public class PdfBoolean extends PdfObject (Code) | | PdfBoolean is the boolean object represented by the keywords true or false.
This object is described in the 'Portable Document Format Reference Manual version 1.7'
section 3.2.1 (page 52).
See Also: PdfObject See Also: BadPdfFormatException |
Constructor Summary | |
public | PdfBoolean(boolean value) Constructs a PdfBoolean -object. | public | PdfBoolean(String value) Constructs a PdfBoolean -object. |
FALSE | final public static String FALSE(Code) | | A possible value of PdfBoolean
|
TRUE | final public static String TRUE(Code) | | A possible value of PdfBoolean
|
PdfBoolean | public PdfBoolean(boolean value)(Code) | | Constructs a PdfBoolean -object.
Parameters: value - the value of the new PdfObject |
booleanValue | public boolean booleanValue()(Code) | | Returns the primitive value of the PdfBoolean -object.
the actual value of the object. |
|
|
|