forked from fanruan/easyexcel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
760 B
25 lines
760 B
package com.alibaba.excel.constant; |
|
|
|
/** |
|
* @author jipengfei |
|
*/ |
|
public class ExcelXmlConstants { |
|
public static final String DIMENSION = "dimension"; |
|
public static final String DIMENSION_REF = "ref"; |
|
public static final String POSITION = "r"; |
|
|
|
public static final String ROW_TAG = "row"; |
|
public static final String CELL_TAG = "c"; |
|
public static final String CELL_VALUE_TYPE_TAG = "t"; |
|
/** |
|
* Number formatted label |
|
*/ |
|
public static final String CELL_DATA_FORMAT_TAG = "s"; |
|
public static final String CELL_FORMULA_TAG = "f"; |
|
public static final String CELL_VALUE_TAG = "v"; |
|
/** |
|
* When the data is "inlineStr" his tag is "t" |
|
*/ |
|
public static final String CELL_INLINE_STRING_VALUE_TAG = "t"; |
|
|
|
}
|
|
|