Uses of Interface
org.apache.poi.poifs.filesystem.DirectoryEntry
-
Packages that use DirectoryEntry Package Description org.apache.poi.extractor org.apache.poi.hpsf Processes streams in the Horrible Property Set Format (HPSF) in POI filesystems.org.apache.poi.hssf.extractor org.apache.poi.hssf.usermodel The usermodel package maps HSSF low level structures to familiar workbook/sheet modelorg.apache.poi.poifs.crypt Implementation of the ECMA-376 and MS-propritary document encryptionsorg.apache.poi.poifs.dev DEV package serves two purposes.org.apache.poi.poifs.filesystem filesystem package maps OLE 2 Compound document files to a more familiar filesystem interface.org.apache.poi.sl.usermodel org.apache.poi.ss.usermodel -
-
Uses of DirectoryEntry in org.apache.poi.extractor
Methods in org.apache.poi.extractor that return DirectoryEntry Modifier and Type Method Description default DirectoryEntry
POIOLE2TextExtractor. getRoot()
Return the underlying DirectoryEntry of this document. -
Uses of DirectoryEntry in org.apache.poi.hpsf
Methods in org.apache.poi.hpsf with parameters of type DirectoryEntry Modifier and Type Method Description static PropertySet
PropertySetFactory. create(DirectoryEntry dir, String name)
Creates the most specificPropertySet
from an entry in the specified POIFS Directory.void
PropertySet. write(DirectoryEntry dir, String name)
Writes a property set to a document in a POI filesystem directory. -
Uses of DirectoryEntry in org.apache.poi.hssf.extractor
Methods in org.apache.poi.hssf.extractor that return DirectoryEntry Modifier and Type Method Description DirectoryEntry
EventBasedExcelExtractor. getRoot()
-
Uses of DirectoryEntry in org.apache.poi.hssf.usermodel
Methods in org.apache.poi.hssf.usermodel that return DirectoryEntry Modifier and Type Method Description DirectoryEntry
HSSFObjectData. getDirectory()
Constructors in org.apache.poi.hssf.usermodel with parameters of type DirectoryEntry Constructor Description HSSFObjectData(EscherContainerRecord spContainer, ObjRecord objRecord, DirectoryEntry _root)
-
Uses of DirectoryEntry in org.apache.poi.poifs.crypt
Methods in org.apache.poi.poifs.crypt with parameters of type DirectoryEntry Modifier and Type Method Description static void
DataSpaceMapUtils. addDefaultDataSpace(DirectoryEntry dir)
static DocumentEntry
DataSpaceMapUtils. createEncryptionEntry(DirectoryEntry dir, String path, EncryptionRecord out)
-
Uses of DirectoryEntry in org.apache.poi.poifs.dev
Methods in org.apache.poi.poifs.dev with parameters of type DirectoryEntry Modifier and Type Method Description static void
POIFSDump. dump(DirectoryEntry root, File parent)
-
Uses of DirectoryEntry in org.apache.poi.poifs.filesystem
Classes in org.apache.poi.poifs.filesystem that implement DirectoryEntry Modifier and Type Class Description class
DirectoryNode
Simple implementation of DirectoryEntryclass
FilteringDirectoryNode
A DirectoryEntry filter, which exposes another DirectoryEntry less certain parts.Methods in org.apache.poi.poifs.filesystem that return DirectoryEntry Modifier and Type Method Description DirectoryEntry
DirectoryEntry. createDirectory(String name)
create a new DirectoryEntryDirectoryEntry
DirectoryNode. createDirectory(String name)
create a new DirectoryEntryDirectoryEntry
FilteringDirectoryNode. createDirectory(String name)
DirectoryEntry
POIFSFileSystem. createDirectory(String name)
create a new DirectoryEntry in the root directoryDirectoryEntry
Entry. getParent()
get this Entry's parent (the DirectoryEntry that owns this Entry).DirectoryEntry
EntryNode. getParent()
get this Entry's parent (the DocumentEntry that owns this Entry).DirectoryEntry
FilteringDirectoryNode. getParent()
Methods in org.apache.poi.poifs.filesystem with parameters of type DirectoryEntry Modifier and Type Method Description static boolean
EntryUtils. areDirectoriesIdentical(DirectoryEntry dirA, DirectoryEntry dirB)
Checks to see if the two Directories hold the same contents.static void
EntryUtils. copyNodeRecursively(Entry entry, DirectoryEntry target)
Copies an Entry into a target POIFS directory, recursivelystatic void
EntryUtils. copyNodes(DirectoryEntry sourceRoot, DirectoryEntry targetRoot)
Copies all the nodes from one POIFS Directory to anotherstatic void
Ole10Native. createOleMarkerEntry(DirectoryEntry parent)
Add the \1OLE marker entry, which is not the Ole10Native entry.Constructors in org.apache.poi.poifs.filesystem with parameters of type DirectoryEntry Constructor Description DocumentOutputStream(DirectoryEntry parent, String name)
Create an OutputStream to create the specified new EntryFilteringDirectoryNode(DirectoryEntry directory, Collection<String> excludes)
Creates a filter round the specified directory, which will exclude entries such as "MyNode" and "MyDir/IgnoreNode". -
Uses of DirectoryEntry in org.apache.poi.sl.usermodel
Methods in org.apache.poi.sl.usermodel that return DirectoryEntry Modifier and Type Method Description default DirectoryEntry
ObjectData. getDirectory()
Gets the object data. -
Uses of DirectoryEntry in org.apache.poi.ss.usermodel
Methods in org.apache.poi.ss.usermodel that return DirectoryEntry Modifier and Type Method Description DirectoryEntry
ObjectData. getDirectory()
Gets the object data.
-