public class MapInfo extends POIXMLDocumentPart
DEFAULT_XML_OPTIONS| Constructor and Description | 
|---|
MapInfo()  | 
MapInfo(PackagePart part,
       PackageRelationship rel)  | 
| Modifier and Type | Method and Description | 
|---|---|
protected void | 
commit()
Save the content in the underlying package part. 
 | 
Collection<XSSFMap> | 
getAllXSSFMaps()  | 
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMapInfo | 
getCTMapInfo()  | 
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTSchema | 
getCTSchemaById(String schemaId)
Gets the 
 | 
XSSFWorkbook | 
getWorkbook()
Returns the parent XSSFWorkbook 
 | 
XSSFMap | 
getXSSFMapById(int id)  | 
XSSFMap | 
getXSSFMapByName(String name)  | 
void | 
readFrom(InputStream is)  | 
protected void | 
writeTo(OutputStream out)  | 
addRelation, clearMemoryPackagePart, createRelationship, createRelationship, createRelationship, getPackagePart, getPackageRelationship, getParent, getRelationById, getRelationCounter, getRelationId, getRelations, getTargetPart, onDocumentCreate, onDocumentRead, onDocumentRemove, onSave, read, rebase, removeRelation, removeRelation, toStringpublic MapInfo()
public MapInfo(PackagePart part, PackageRelationship rel) throws IOException
IOExceptionpublic void readFrom(InputStream is) throws IOException
IOExceptionpublic XSSFWorkbook getWorkbook()
public org.openxmlformats.schemas.spreadsheetml.x2006.main.CTMapInfo getCTMapInfo()
public org.openxmlformats.schemas.spreadsheetml.x2006.main.CTSchema getCTSchemaById(String schemaId)
schemaId - the schema IDpublic XSSFMap getXSSFMapById(int id)
public Collection<XSSFMap> getAllXSSFMaps()
protected void writeTo(OutputStream out) throws IOException
IOExceptionprotected void commit()
               throws IOException
POIXMLDocumentPart
 protected void commit() throws IOException {
   PackagePart part = getPackagePart();
   OutputStream out = part.getOutputStream();
   XmlObject bean = getXmlBean(); //the "model" which holds changes in memory
   bean.save(out, DEFAULT_XML_OPTIONS);
   out.close();
 }
  commit in class POIXMLDocumentPartIOExceptionCopyright © 2020. All rights reserved.