Package com.datalogics.PDFL
Class PDFBoolean
java.lang.Object
com.datalogics.PDFL.PDFObject
com.datalogics.PDFL.PDFBoolean
Represents a boolean data element within a PDF document. All objects in a PDF document are built from a collection of simpler objects that represent fundamental datatypes like numbers, strings and arrays. PDFObject and its subclasses allow direct access and manipulation of these simple objects. Some subclasses represent single data elements. For example, PDFBoolean represents a single boolean value. Others represent a collection of PDFObjects, such as PDFArray, an indexed array of data elements.
A PDFBoolean represents a single boolean value, and may be inserted into any collection object.
-
Constructor Summary
ConstructorsConstructorDescriptionPDFBoolean(boolean value, Document doc, boolean indirect) General constructorPDFBoolean(boolean value, PDFObject docFromObj, boolean indirect) General constructor -
Method Summary
Methods inherited from class com.datalogics.PDFL.PDFObject
clone, clone, clone, clone, clone, compareTo, destroy, enumPDFObjects, equals, getDocument, getGeneration, getID, getIndirect, getPDFHashValue
-
Constructor Details
-
PDFBoolean
General constructor- Parameters:
value- Boolean value of this PDFBooleandoc- Document object containing this PDFBooleanindirect- flag marking this as an indirect PDFObject
-
PDFBoolean
General constructor- Parameters:
value- Boolean value of this PDFBooleandocFromObj- The new PDFArray will be created in the same document as this object.indirect- flag marking this as an indirect PDFObject
-
-
Method Details