|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use OPCPackage | |
---|---|
org.apache.poi | |
org.apache.poi.dev | |
org.apache.poi.extractor | |
org.apache.poi.openxml4j.opc | |
org.apache.poi.openxml4j.opc.internal | |
org.apache.poi.openxml4j.opc.internal.unmarshallers | |
org.apache.poi.poifs.crypt.dsig | |
org.apache.poi.ss.usermodel | |
org.apache.poi.util | Top-level util package are classes that are useful throughout the project. |
org.apache.poi.xdgf.extractor | |
org.apache.poi.xdgf.usermodel | |
org.apache.poi.xslf.extractor | |
org.apache.poi.xslf.usermodel | |
org.apache.poi.xssf.binary | The org.apache.poi.xssf.binary package includes necessary underlying components for streaming/read-only processing of xlsb files. |
org.apache.poi.xssf.eventusermodel | |
org.apache.poi.xssf.extractor | |
org.apache.poi.xssf.usermodel | |
org.apache.poi.xwpf.extractor | |
org.apache.poi.xwpf.usermodel |
Uses of OPCPackage in org.apache.poi |
---|
Methods in org.apache.poi that return OPCPackage | |
---|---|
OPCPackage |
POIXMLTextExtractor.getPackage()
Returns the opened OPCPackage that contains the document |
OPCPackage |
POIXMLDocument.getPackage()
Get the assigned OPCPackage |
static OPCPackage |
POIXMLDocument.openPackage(java.lang.String path)
Wrapper to open a package, which works around shortcomings in java's this() constructor calls |
Methods in org.apache.poi with parameters of type OPCPackage | |
---|---|
protected void |
POIXMLDocumentPart.rebase(OPCPackage pkg)
When you open something like a theme, call this to re-base the XML Document onto the core child of the current core document |
Constructors in org.apache.poi with parameters of type OPCPackage | |
---|---|
POIXMLDocument(OPCPackage pkg)
|
|
POIXMLDocument(OPCPackage pkg,
java.lang.String coreDocumentRel)
|
|
POIXMLDocumentPart(OPCPackage pkg)
Construct POIXMLDocumentPart representing a "core document" package part. |
|
POIXMLDocumentPart(OPCPackage pkg,
java.lang.String coreDocumentRel)
Construct POIXMLDocumentPart representing a custom "core document" package part. |
|
POIXMLProperties(OPCPackage docPackage)
|
Uses of OPCPackage in org.apache.poi.dev |
---|
Constructors in org.apache.poi.dev with parameters of type OPCPackage | |
---|---|
OOXMLLister(OPCPackage container)
|
|
OOXMLLister(OPCPackage container,
java.io.PrintStream disp)
|
Uses of OPCPackage in org.apache.poi.extractor |
---|
Methods in org.apache.poi.extractor with parameters of type OPCPackage | |
---|---|
static POIXMLTextExtractor |
ExtractorFactory.createExtractor(OPCPackage pkg)
Tries to determine the actual type of file and produces a matching text-extractor for it. |
Uses of OPCPackage in org.apache.poi.openxml4j.opc |
---|
Subclasses of OPCPackage in org.apache.poi.openxml4j.opc | |
---|---|
class |
ZipPackage
Physical zip package. |
Fields in org.apache.poi.openxml4j.opc declared as OPCPackage | |
---|---|
protected OPCPackage |
PackagePart._container
This part's container. |
Methods in org.apache.poi.openxml4j.opc that return OPCPackage | |
---|---|
static OPCPackage |
OPCPackage.create(java.io.File file)
Creates a new package. |
static OPCPackage |
OPCPackage.create(java.io.OutputStream output)
|
static OPCPackage |
OPCPackage.create(java.lang.String path)
Creates a new package. |
OPCPackage |
PackageRelationship.getPackage()
|
OPCPackage |
PackagePart.getPackage()
|
static OPCPackage |
OPCPackage.open(java.io.File file)
Open a package with read/write permission. |
static OPCPackage |
OPCPackage.open(java.io.File file,
PackageAccess access)
Open a package. |
static OPCPackage |
OPCPackage.open(java.io.InputStream in)
Open a package. |
static OPCPackage |
OPCPackage.open(java.lang.String path)
Open a package with read/write permission. |
static OPCPackage |
OPCPackage.open(java.lang.String path,
PackageAccess access)
Open a package. |
static OPCPackage |
OPCPackage.open(ZipEntrySource zipEntry)
Open an user provided ZipEntrySource with read-only permission. |
static OPCPackage |
OPCPackage.openOrCreate(java.io.File file)
Opens a package if it exists, else it creates one. |
Methods in org.apache.poi.openxml4j.opc with parameters of type OPCPackage | |
---|---|
boolean |
OPCPackage.validatePackage(OPCPackage pkg)
Validates the package compliance with the OPC specifications. |
Constructors in org.apache.poi.openxml4j.opc with parameters of type OPCPackage | |
---|---|
PackagePart(OPCPackage pack,
PackagePartName partName,
ContentType contentType)
Constructor. |
|
PackagePart(OPCPackage pack,
PackagePartName partName,
ContentType contentType,
boolean loadRelationships)
Constructor. |
|
PackagePart(OPCPackage pack,
PackagePartName partName,
java.lang.String contentType)
Constructor. |
|
PackageRelationship(OPCPackage pkg,
PackagePart sourcePart,
java.net.URI targetUri,
TargetMode targetMode,
java.lang.String relationshipType,
java.lang.String id)
Constructor. |
|
PackageRelationshipCollection(OPCPackage container)
Constructor. |
|
PackageRelationshipCollection(OPCPackage container,
PackagePart part)
Constructor. |
|
ZipPackagePart(OPCPackage container,
PackagePartName partName,
java.lang.String contentType)
Constructor. |
|
ZipPackagePart(OPCPackage container,
java.util.zip.ZipEntry zipEntry,
PackagePartName partName,
java.lang.String contentType)
Constructor. |
Uses of OPCPackage in org.apache.poi.openxml4j.opc.internal |
---|
Fields in org.apache.poi.openxml4j.opc.internal declared as OPCPackage | |
---|---|
protected OPCPackage |
ContentTypeManager.container
Reference to the package using this content type manager. |
Constructors in org.apache.poi.openxml4j.opc.internal with parameters of type OPCPackage | |
---|---|
ContentTypeManager(java.io.InputStream in,
OPCPackage pkg)
Constructor. |
|
MemoryPackagePart(OPCPackage pack,
PackagePartName partName,
java.lang.String contentType)
Constructor. |
|
MemoryPackagePart(OPCPackage pack,
PackagePartName partName,
java.lang.String contentType,
boolean loadRelationships)
Constructor. |
|
PackagePropertiesPart(OPCPackage pack,
PackagePartName partName)
Constructor. |
|
ZipContentTypeManager(java.io.InputStream in,
OPCPackage pkg)
Delegate constructor to the super constructor. |
Uses of OPCPackage in org.apache.poi.openxml4j.opc.internal.unmarshallers |
---|
Methods in org.apache.poi.openxml4j.opc.internal.unmarshallers with parameters of type OPCPackage | |
---|---|
void |
UnmarshallContext.setPackage(OPCPackage container)
|
Constructors in org.apache.poi.openxml4j.opc.internal.unmarshallers with parameters of type OPCPackage | |
---|---|
UnmarshallContext(OPCPackage targetPackage,
PackagePartName partName)
Constructor. |
Uses of OPCPackage in org.apache.poi.poifs.crypt.dsig |
---|
Methods in org.apache.poi.poifs.crypt.dsig that return OPCPackage | |
---|---|
OPCPackage |
SignatureConfig.getOpcPackage()
|
Methods in org.apache.poi.poifs.crypt.dsig with parameters of type OPCPackage | |
---|---|
void |
SignatureConfig.setOpcPackage(OPCPackage opcPackage)
|
Uses of OPCPackage in org.apache.poi.ss.usermodel |
---|
Methods in org.apache.poi.ss.usermodel with parameters of type OPCPackage | |
---|---|
static Workbook |
WorkbookFactory.create(OPCPackage pkg)
Creates a XSSFWorkbook from the given OOXML Package |
Uses of OPCPackage in org.apache.poi.util |
---|
Methods in org.apache.poi.util that return OPCPackage | |
---|---|
static OPCPackage |
PackageHelper.clone(OPCPackage pkg,
java.io.File file)
Clone the specified package. |
static OPCPackage |
PackageHelper.open(java.io.InputStream is)
|
Methods in org.apache.poi.util with parameters of type OPCPackage | |
---|---|
static OPCPackage |
PackageHelper.clone(OPCPackage pkg,
java.io.File file)
Clone the specified package. |
Uses of OPCPackage in org.apache.poi.xdgf.extractor |
---|
Constructors in org.apache.poi.xdgf.extractor with parameters of type OPCPackage | |
---|---|
XDGFVisioExtractor(OPCPackage openPackage)
|
Uses of OPCPackage in org.apache.poi.xdgf.usermodel |
---|
Constructors in org.apache.poi.xdgf.usermodel with parameters of type OPCPackage | |
---|---|
XmlVisioDocument(OPCPackage pkg)
|
Uses of OPCPackage in org.apache.poi.xslf.extractor |
---|
Constructors in org.apache.poi.xslf.extractor with parameters of type OPCPackage | |
---|---|
XSLFPowerPointExtractor(OPCPackage container)
|
Uses of OPCPackage in org.apache.poi.xslf.usermodel |
---|
Methods in org.apache.poi.xslf.usermodel with parameters of type OPCPackage | |
---|---|
static SlideShow<?,?> |
XSLFSlideShowFactory.createSlideShow(OPCPackage pkg)
Creates a XMLSlideShow from the given OOXML Package |
Constructors in org.apache.poi.xslf.usermodel with parameters of type OPCPackage | |
---|---|
XMLSlideShow(OPCPackage pkg)
|
|
XSLFSlideShow(OPCPackage container)
|
Uses of OPCPackage in org.apache.poi.xssf.binary |
---|
Constructors in org.apache.poi.xssf.binary with parameters of type OPCPackage | |
---|---|
XSSFBSharedStringsTable(OPCPackage pkg)
|
Uses of OPCPackage in org.apache.poi.xssf.eventusermodel |
---|
Fields in org.apache.poi.xssf.eventusermodel declared as OPCPackage | |
---|---|
protected OPCPackage |
XSSFReader.pkg
|
Constructors in org.apache.poi.xssf.eventusermodel with parameters of type OPCPackage | |
---|---|
ReadOnlySharedStringsTable(OPCPackage pkg)
Calls { ReadOnlySharedStringsTable.ReadOnlySharedStringsTable(OPCPackage, boolean) } with
a value of true for including phonetic runs |
|
ReadOnlySharedStringsTable(OPCPackage pkg,
boolean includePhoneticRuns)
|
|
XSSFBReader(OPCPackage pkg)
Creates a new XSSFReader, for the given package |
|
XSSFReader(OPCPackage pkg)
Creates a new XSSFReader, for the given package |
Uses of OPCPackage in org.apache.poi.xssf.extractor |
---|
Methods in org.apache.poi.xssf.extractor that return OPCPackage | |
---|---|
OPCPackage |
XSSFEventBasedExcelExtractor.getPackage()
Returns the opened OPCPackage container. |
Constructors in org.apache.poi.xssf.extractor with parameters of type OPCPackage | |
---|---|
XSSFBEventBasedExcelExtractor(OPCPackage container)
|
|
XSSFEventBasedExcelExtractor(OPCPackage container)
|
|
XSSFExcelExtractor(OPCPackage container)
|
Uses of OPCPackage in org.apache.poi.xssf.usermodel |
---|
Methods in org.apache.poi.xssf.usermodel that return OPCPackage | |
---|---|
protected static OPCPackage |
XSSFWorkbook.newPackage(XSSFWorkbookType workbookType)
Create a new SpreadsheetML package and setup the default minimal content |
Constructors in org.apache.poi.xssf.usermodel with parameters of type OPCPackage | |
---|---|
XSSFWorkbook(OPCPackage pkg)
Constructs a XSSFWorkbook object given a OpenXML4J Package object,
see http://poi.apache.org/oxml4j/. |
Uses of OPCPackage in org.apache.poi.xwpf.extractor |
---|
Constructors in org.apache.poi.xwpf.extractor with parameters of type OPCPackage | |
---|---|
XWPFWordExtractor(OPCPackage container)
|
Uses of OPCPackage in org.apache.poi.xwpf.usermodel |
---|
Methods in org.apache.poi.xwpf.usermodel that return OPCPackage | |
---|---|
protected static OPCPackage |
XWPFDocument.newPackage()
Create a new WordProcessingML package and setup the default minimal content |
Constructors in org.apache.poi.xwpf.usermodel with parameters of type OPCPackage | |
---|---|
XWPFDocument(OPCPackage pkg)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |