Difference between revisions of "SimpleGraph-Excel"
Jump to navigation
Jump to search
(→Modern) |
|||
Line 16: | Line 16: | ||
= Mental Model = | = Mental Model = | ||
<uml> | <uml> | ||
+ | |||
hide circle | hide circle | ||
+ | package Excel { | ||
class Workbook { | class Workbook { | ||
name | name | ||
Line 34: | Line 36: | ||
Sheet "1" -> "n" Row | Sheet "1" -> "n" Row | ||
Row "1" -> "n" Cell | Row "1" -> "n" Cell | ||
+ | } | ||
+ | package TinkerPop { | ||
+ | class Property { | ||
+ | name | ||
+ | value | ||
+ | } | ||
+ | class Vertex { | ||
+ | id | ||
+ | label | ||
+ | } | ||
+ | class Edge { | ||
+ | id | ||
+ | label | ||
+ | } | ||
+ | Edge -> "1 in" Vertex | ||
+ | Edge -> "1 out" Vertex | ||
+ | Vertex -> "n properties" Property | ||
+ | Edge -> "n properties" Property | ||
+ | Edges -> "n edges" Edge | ||
+ | Vertices -> "n Vertices" Vertex | ||
+ | } | ||
+ | Cell - Property | ||
+ | Edge - Sheet | ||
+ | Vertex - Sheet | ||
</uml> | </uml> | ||
Revision as of 13:40, 31 August 2018
SimpleGraphModule
SimpleGraph Excel module
The SimpleGraph Excel module makes Microsoft Excel workbooks accessible via the Apache POI API see Apache POI XSSF/HSSF.
Sources
- System: ExcelSystem.java
- JUnit-Test: TestExcelSystem.java