public enum CellType extends Enum<CellType> implements CellAdapter
| Enum Constant and Description |
|---|
Blank |
Boolean |
Error |
Formula |
Numeric |
String |
| Modifier and Type | Method and Description |
|---|---|
static Cell |
adaptPoi(org.apache.poi.ss.usermodel.Cell cell) |
static CellType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CellType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfadaptpublic static final CellType Boolean
public static final CellType Error
public static final CellType Formula
public static final CellType Numeric
public static final CellType String
public static final CellType Blank
public static CellType[] values()
for (CellType c : CellType.values()) System.out.println(c);
public static CellType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static Cell adaptPoi(org.apache.poi.ss.usermodel.Cell cell)
Copyright © 2018. All Rights Reserved.