public class MapInfo extends POIXMLDocumentPart
POIXMLDocumentPart.RelationPart
Constructor and Description |
---|
MapInfo() |
MapInfo(PackagePart part) |
Modifier and Type | Method and Description |
---|---|
protected void |
commit()
Save the content in the underlying package part.
|
java.util.Collection<XSSFMap> |
getAllXSSFMaps() |
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMapInfo |
getCTMapInfo() |
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTSchema |
getCTSchemaById(java.lang.String schemaId)
Gets the
|
XSSFWorkbook |
getWorkbook()
Returns the parent XSSFWorkbook
|
XSSFMap |
getXSSFMapById(int id) |
XSSFMap |
getXSSFMapByName(java.lang.String name) |
void |
readFrom(java.io.InputStream is) |
protected void |
writeTo(java.io.OutputStream out) |
_invokeOnDocumentRead, addRelation, createRelationship, createRelationship, createRelationship, getNextPartNumber, getPackagePart, getParent, getRelationById, getRelationId, getRelationPartById, getRelationParts, getRelations, getTargetPart, isCommitted, onDocumentCreate, onDocumentRead, onDocumentRemove, onSave, prepareForCommit, read, rebase, removeRelation, removeRelation, removeRelation, setCommitted, toString
public MapInfo()
public MapInfo(PackagePart part) throws java.io.IOException
java.io.IOException
public void readFrom(java.io.InputStream is) throws java.io.IOException
java.io.IOException
public XSSFWorkbook getWorkbook()
public org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMapInfo getCTMapInfo()
public org.openxmlformats.schemas.spreadsheetml.x2006.main.CTSchema getCTSchemaById(java.lang.String schemaId)
schemaId
- the schema IDpublic XSSFMap getXSSFMapById(int id)
public XSSFMap getXSSFMapByName(java.lang.String name)
public java.util.Collection<XSSFMap> getAllXSSFMaps()
protected void writeTo(java.io.OutputStream out) throws java.io.IOException
java.io.IOException
protected void commit() throws java.io.IOException
POIXMLDocumentPart
Sub-classes should override and add logic to marshal the "model" into Ooxml4J.
For example, the code saving a generic XML entry may look as follows:
protected void commit() throws IOException { PackagePart part = getPackagePart(); try (OutputStream out = part.getOutputStream()) { XmlObject bean = getXmlBean(); //the "model" which holds changes in memory bean.save(out, DEFAULT_XML_OPTIONS); } }
commit
in class POIXMLDocumentPart
java.io.IOException
- a subclass may throw an IOException if the changes can't be committedCopyright 2022 The Apache Software Foundation or its licensors, as applicable.