public static enum CellData.FormulaStrategy extends Enum<CellData.FormulaStrategy>
| Modifier and Type | Method and Description |
|---|---|
static CellData.FormulaStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CellData.FormulaStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CellData.FormulaStrategy DEFAULT
public static final CellData.FormulaStrategy BY_COLUMN
public static final CellData.FormulaStrategy BY_ROW
public static CellData.FormulaStrategy[] values()
for (CellData.FormulaStrategy c : CellData.FormulaStrategy.values()) System.out.println(c);
public static CellData.FormulaStrategy 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 © 2017. All rights reserved.