public enum ImportFlags extends java.lang.Enum<ImportFlags>
| Enum Constant and Description |
|---|
ConditionalFormatting
Read the conditional formattings.
|
Data
Read only the data from worksheet
|
DataValidation
Read the data Validations.
|
Formulas
Read only the data and formula from worksheet
|
MergeArea
Read the merge cells.
|
PivotTable
Read the pivot tables.
|
Shapes
Read all the shapes.
|
Style
Read the styles.
|
Table
Read the tables.
|
| Modifier and Type | Method and Description |
|---|---|
static ImportFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImportFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImportFlags Data
public static final ImportFlags Formulas
public static final ImportFlags Table
public static final ImportFlags MergeArea
public static final ImportFlags Style
public static final ImportFlags ConditionalFormatting
public static final ImportFlags DataValidation
public static final ImportFlags PivotTable
public static final ImportFlags Shapes
public static ImportFlags[] values()
for (ImportFlags c : ImportFlags.values()) System.out.println(c);
public static ImportFlags valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null