List of usage examples for org.apache.pdfbox.cos COSInteger longValue
@Override public long longValue()
From source file:org.lockss.pdf.pdfbox.PdfBoxTokens.java
License:Open Source License
/** * <p>//from w ww. jav a 2 s . c om * Converts from a {@link COSInteger} to a <code>long</code> * value. * </p> * @param cosInteger A {@link COSInteger} instance. * @return A <code>long</code> value. * @since 1.56 */ protected static long getInteger(COSInteger cosInteger) { return cosInteger.longValue(); }