public enum CellDataType extends Enum<CellDataType>
public static final CellDataType STRING
public static final CellDataType DATE_TIME
public static final CellDataType NUMBER
public static final CellDataType BOOLEAN
public static final CellDataType FORMULA
public static final CellDataType AUTO
public static CellDataType[] values()
for (CellDataType c : CellDataType.values()) System.out.println(c);
public static CellDataType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2020–2022. All rights reserved.