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

org.apache.pdfbox.pdmodel.interactive.form.FieldUtils 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.pdmodel.interactive.form;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;

import org.apache.pdfbox.cos.COSArray;
import org.apache.pdfbox.cos.COSBase;
import org.apache.pdfbox.cos.COSString;
import org.apache.pdfbox.pdmodel.common.COSArrayList;

/**
 * A set of utility methods to help with common AcroForm form and field related functions.
 */
public final class FieldUtils
{
    
    /**
     * An implementation of a basic key value pair.
     * 
     * This implementation is used to help sorting the content of
     * field option entries with an array of two-element arrays as
     * used by choice fields.
     * 
     */
    static class KeyValue
    {
        private final String key;
        private final String value;
        
        KeyValue(final String theKey, final String theValue)
        {
            this.key = theKey;
            this.value = theValue;
        }
        
        public String getKey()
        {
            return this.key;
        }

        public String getValue()
        {
            return this.value;
        }
        
        @Override
        public String toString()
        {
            return "(" + this.key + ", " + this.value + ")";
        }
    }
    
    /**
     * Comparator to sort KeyValue by key.
     */
    static class KeyValueKeyComparator implements Serializable, Comparator
    {

        private static final long serialVersionUID = 6715364290007167694L;

        @Override
        public int compare(KeyValue o1, KeyValue o2)
        {
            return o1.key.compareTo(o2.key);
        }
    }

    /**
     * Comparator to sort KeyValue by value.
     */
    static class KeyValueValueComparator implements Serializable, Comparator
    {

        private static final long serialVersionUID = -3984095679894798265L;

        @Override
        public int compare(KeyValue o1, KeyValue o2)
        {
            return o1.value.compareTo(o2.value);
        }
    }

    /**
     * Constructor.
     */
    private FieldUtils()
    {
    }
    
    /**
     * Return two related lists as a single list with key value pairs.
     * 
     * @param key the key elements
     * @param value the value elements
     * @return a sorted list of KeyValue elements.
     */
    static List toKeyValueList(List key, List value)
    {
        List list = new ArrayList();
        for(int i =0; i pairs)
    {
        Collections.sort(pairs, new FieldUtils.KeyValueValueComparator());
    }

    /**
     * Sort two related lists simultaneously by the elements in the value parameter.
     * 
     * @param pairs a list of KeyValue elements
     */
    static void sortByKey(List pairs)
    {
        Collections.sort(pairs, new FieldUtils.KeyValueKeyComparator());
    }
    
    /**
     * Return either one of a list which can have two-element arrays entries.
     * 

* Some entries in a dictionary can either be an array of elements * or an array of two-element arrays. This method will either return * the elements in the array or in case of two-element arrays, the element * designated by the pair index *

*

* An {@link IllegalArgumentException} will be thrown if the items contain * two-element arrays and the index is not 0 or 1. *

* * @param items the array of elements or two-element arrays * @param pairIdx the index into the two-element array * @return a List of single elements */ static List getPairableItems(COSBase items, int pairIdx) { if (pairIdx < 0 || pairIdx > 1) { throw new IllegalArgumentException("Only 0 and 1 are allowed as an index into two-element arrays"); } if (items instanceof COSString) { List array = new ArrayList(); array.add(((COSString) items).getString()); return array; } else if (items instanceof COSArray) { // test if there is a single text or a two-element array COSBase entry = ((COSArray) items).get(0); if (entry instanceof COSString) { return COSArrayList.convertCOSStringCOSArrayToList((COSArray)items); } else { return getItemsFromPair(items, pairIdx); } } return Collections.emptyList(); } /** * Return either one of a list of two-element arrays entries. * * @param items the array of elements or two-element arrays * @param pairIdx the index into the two-element array * @return a List of single elements */ private static List getItemsFromPair(COSBase items, int pairIdx) { List exportValues = new ArrayList(); int numItems = ((COSArray) items).size(); for (int i=0;i




© 2015 - 2024 Weber Informatics LLC | Privacy Policy