Example usage for org.apache.pdfbox.cos COSBoolean TRUE

List of usage examples for org.apache.pdfbox.cos COSBoolean TRUE

Introduction

In this page you can find the example usage for org.apache.pdfbox.cos COSBoolean TRUE.

Prototype

COSBoolean TRUE

To view the source code for org.apache.pdfbox.cos COSBoolean TRUE.

Click Source Link

Document

The PDF true value.

Usage

From source file:org.lockss.pdf.pdfbox.PdfBoxTokens.java

License:Open Source License

/**
 * <p>//ww w  . ja  v  a2s. co m
 * Converts from a <code>boolean</code> to a {@link COSBoolean}.
 * </p>
 * @param value A value.
 * @return A {@link COSBoolean} instance.
 * @since 1.56
 */
protected static COSBoolean asCOSBoolean(boolean value) {
    return value ? COSBoolean.TRUE : COSBoolean.FALSE;
}