Logo

GitLab

Sign in

曹亮 / poi-demo

  • Back to Dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • poi-demo
  • ..
  • entity
  • ExcelGraph.java
  • update
    73aee3fa
    曹亮 authored
    2017-11-14 18:49:13 +0800  
    Browse Dir »
ExcelGraph.java 348 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package com.bckefu.excel.graph.entity;

import java.util.List;

/**
 * @author caoliang1918@aliyun.com
 * @Date 2017/11/5:23:24
 */
public interface ExcelGraph {

    ExcelGraphElement getCategory();

    List<ExcelGraphElement> getValueList();

    Integer getGraphType();

    List<ExcelTitleCell> getTitleCell();

    List<String> getTitle();
}