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

com.lowagie.text.pdf.FieldReader Maven / Gradle / Ivy

package com.lowagie.text.pdf;

import java.util.HashMap;
import java.util.List;

/**
 * Represents the basic needs for reading fields.
 */
public interface FieldReader {

    HashMap getFields();

    String getFieldValue(String fieldKey);

    List getListValues(String fieldKey);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy