Uses of Interface
org.apache.poi.poifs.filesystem.DocumentEntry
-
Packages that use DocumentEntry Package Description org.apache.poi.poifs.crypt Implementation of the ECMA-376 and MS-propritary document encryptionsorg.apache.poi.poifs.filesystem filesystem package maps OLE 2 Compound document files to a more familiar filesystem interface. -
-
Uses of DocumentEntry in org.apache.poi.poifs.crypt
Methods in org.apache.poi.poifs.crypt that return DocumentEntry Modifier and Type Method Description static DocumentEntry
DataSpaceMapUtils. createEncryptionEntry(DirectoryEntry dir, String path, EncryptionRecord out)
-
Uses of DocumentEntry in org.apache.poi.poifs.filesystem
Classes in org.apache.poi.poifs.filesystem that implement DocumentEntry Modifier and Type Class Description class
DocumentNode
Simple implementation of DocumentEntry for OPOIFSMethods in org.apache.poi.poifs.filesystem that return DocumentEntry Modifier and Type Method Description DocumentEntry
DirectoryEntry. createDocument(String name, int size, POIFSWriterListener writer)
create a new DocumentEntry; the data will be provided laterDocumentEntry
DirectoryEntry. createDocument(String name, InputStream stream)
create a new DocumentEntryDocumentEntry
DirectoryNode. createDocument(String name, int size, POIFSWriterListener writer)
create a new DocumentEntry; the data will be provided laterDocumentEntry
DirectoryNode. createDocument(String name, InputStream stream)
create a new DocumentEntryDocumentEntry
FilteringDirectoryNode. createDocument(String name, int size, POIFSWriterListener writer)
DocumentEntry
FilteringDirectoryNode. createDocument(String name, InputStream stream)
DocumentEntry
POIFSFileSystem. createDocument(InputStream stream, String name)
Create a new document to be added to the root directoryDocumentEntry
POIFSFileSystem. createDocument(String name, int size, POIFSWriterListener writer)
create a new DocumentEntry in the root entry; the data will be provided laterDocumentEntry
DirectoryNode. createOrUpdateDocument(String name, InputStream stream)
Set the contents of a document, creating if needed, otherwise updating.DocumentEntry
POIFSFileSystem. createOrUpdateDocument(InputStream stream, String name)
Set the contents of a document in the root directory, creating if needed, otherwise updatingMethods in org.apache.poi.poifs.filesystem with parameters of type DocumentEntry Modifier and Type Method Description static boolean
EntryUtils. areDocumentsIdentical(DocumentEntry docA, DocumentEntry docB)
Compares twoDocumentEntry
instances of a POI file system.Constructors in org.apache.poi.poifs.filesystem with parameters of type DocumentEntry Constructor Description DocumentInputStream(DocumentEntry document)
Create an InputStream from the specified DocumentEntryDocumentOutputStream(DocumentEntry document)
Create an OutputStream from the specified DocumentEntry.
-