Uses of Interface
org.apache.poi.poifs.filesystem.Entry
-
Packages that use Entry Package Description org.apache.poi.extractor org.apache.poi.poifs.filesystem filesystem package maps OLE 2 Compound document files to a more familiar filesystem interface. -
-
Uses of Entry in org.apache.poi.extractor
Method parameters in org.apache.poi.extractor with type arguments of type Entry Modifier and Type Method Description default void
ExtractorProvider. identifyEmbeddedResources(POIOLE2TextExtractor ext, List<Entry> dirs, List<InputStream> nonPOIFS)
Returns an array of text extractors, one for each of the embedded documents in the file (if there are any). -
Uses of Entry in org.apache.poi.poifs.filesystem
Subinterfaces of Entry in org.apache.poi.poifs.filesystem Modifier and Type Interface Description interface
DirectoryEntry
This interface defines methods specific to Directory objects managed by a Filesystem instance.interface
DocumentEntry
This interface defines methods specific to Document objects managed by a Filesystem instance.Classes in org.apache.poi.poifs.filesystem that implement Entry Modifier and Type Class Description class
DirectoryNode
Simple implementation of DirectoryEntryclass
DocumentNode
Simple implementation of DocumentEntry for OPOIFSclass
EntryNode
Abstract implementation of Entry Extending classes should override isDocument() or isDirectory(), as appropriate Extending classes must override isDeleteOK()class
FilteringDirectoryNode
A DirectoryEntry filter, which exposes another DirectoryEntry less certain parts.Methods in org.apache.poi.poifs.filesystem that return Entry Modifier and Type Method Description Entry
DirectoryEntry. getEntry(String name)
get a specified Entry by name, case sensitiveEntry
DirectoryNode. getEntry(String name)
get a specified Entry by name, case sensitiveEntry
FilteringDirectoryNode. getEntry(String name)
Entry
DirectoryEntry. getEntryCaseInsensitive(String name)
get a specified Entry by name, case insensitiveEntry
DirectoryNode. getEntryCaseInsensitive(String name)
get a specified Entry by name, case-insensitiveEntry
FilteringDirectoryNode. getEntryCaseInsensitive(String name)
Methods in org.apache.poi.poifs.filesystem that return types with arguments of type Entry Modifier and Type Method Description Iterator<Entry>
DirectoryEntry. getEntries()
get an iterator of the Entry instances contained directly in this instance (in other words, children only; no grandchildren etc.)Iterator<Entry>
DirectoryNode. getEntries()
get an iterator of the Entry instances contained directly in this instance (in other words, children only; no grandchildren etc.)Iterator<Entry>
FilteringDirectoryNode. getEntries()
Iterator<Entry>
DirectoryNode. iterator()
Returns an Iterator over all the entriesIterator<Entry>
FilteringDirectoryNode. iterator()
Spliterator<Entry>
DirectoryNode. spliterator()
Returns a Spliterator over all the entriesSpliterator<Entry>
FilteringDirectoryNode. spliterator()
Methods in org.apache.poi.poifs.filesystem with parameters of type Entry Modifier and Type Method Description static void
EntryUtils. copyNodeRecursively(Entry entry, DirectoryEntry target)
Copies an Entry into a target POIFS directory, recursivelyDocumentInputStream
DirectoryNode. createDocumentInputStream(Entry document)
open a document in the directory's entry's list of entries
-