Package com.itextpdf.kernel.pdf
Interface IPdfNameTreeAccess
-
- All Known Implementing Classes:
GenericNameTree,PdfNameTree,PdfStructIdTree
public interface IPdfNameTreeAccessAbstract access interface to a PDF name tree.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PdfObjectgetEntry(PdfString key)Retrieve an entry from the name tree.PdfObjectgetEntry(java.lang.String key)Retrieve an entry from the name tree.java.util.Set<PdfString>getKeys()Retrieve the set of keys in the name tree.
-
-
-
Method Detail
-
getEntry
PdfObject getEntry(PdfString key)
Retrieve an entry from the name tree.- Parameters:
key- key of entry to retrieve- Returns:
- retrieved entry or
nullif absent
-
getEntry
PdfObject getEntry(java.lang.String key)
Retrieve an entry from the name tree.- Parameters:
key- key of entry to retrieve- Returns:
- retrieved entry or
nullif absent
-
getKeys
java.util.Set<PdfString> getKeys()
Retrieve the set of keys in the name tree.- Returns:
- set of all keys in the name tree
-
-