All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.pdfbox.cos.COSUnread Maven / Gradle / Ivy

Go to download

The Apache PDFBox library is an open source Java tool for working with PDF documents.

There is a newer version: 3.0.2
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.apache.pdfbox.cos;

import org.apache.pdfbox.exceptions.COSVisitorException;
import org.apache.pdfbox.pdfparser.ConformingPDFParser;

/**
 *
 * @author adam
 */
public class COSUnread extends COSBase {
    private long objectNumber;
    private long generation;
    private ConformingPDFParser parser;

    public COSUnread() {
        super();
    }

    public COSUnread(long objectNumber, long generation) {
        this();
        this.objectNumber = objectNumber;
        this.generation = generation;
    }

    public COSUnread(long objectNumber, long generation, ConformingPDFParser parser) {
        this(objectNumber, generation);
        this.parser = parser;
    }

    @Override
    public Object accept(ICOSVisitor visitor) throws COSVisitorException {
        // TODO: read the object using the parser (if available) and visit that object
        throw new UnsupportedOperationException("COSUnread can not be written/visited.");
    }

    @Override
    public String toString() {
        return "COSUnread{" + objectNumber + "," + generation + "}";
    }

    /**
     * @return the objectNumber
     */
    public long getObjectNumber() {
        return objectNumber;
    }

    /**
     * @param objectNumber the objectNumber to set
     */
    public void setObjectNumber(long objectNumber) {
        this.objectNumber = objectNumber;
    }

    /**
     * @return the generation
     */
    public long getGeneration() {
        return generation;
    }

    /**
     * @param generation the generation to set
     */
    public void setGeneration(long generation) {
        this.generation = generation;
    }

    /**
     * @return the parser
     */
    public ConformingPDFParser getParser() {
        return parser;
    }

    /**
     * @param parser the parser to set
     */
    public void setParser(ConformingPDFParser parser) {
        this.parser = parser;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy