public enum ExcelType extends Enum<ExcelType>
| Enum Constant and Description |
|---|
COEDIT |
FORM_COMPILE |
FORM_PREPARE |
OPENDATA |
SHARING |
SNAPSHOT |
VIEW |
| Modifier and Type | Method and Description |
|---|---|
static ExcelType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExcelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExcelType VIEW
public static final ExcelType FORM_PREPARE
public static final ExcelType SNAPSHOT
public static final ExcelType SHARING
public static final ExcelType OPENDATA
public static final ExcelType FORM_COMPILE
public static final ExcelType COEDIT
public static ExcelType[] values()
for (ExcelType c : ExcelType.values()) System.out.println(c);
public static ExcelType 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 nullCopyright © 2018. All rights reserved.