public static enum CellReference.NameType extends java.lang.Enum<CellReference.NameType>
Enum Constant and Description |
---|
BAD_CELL_OR_NAMED_RANGE |
CELL |
COLUMN |
NAMED_RANGE |
ROW |
Modifier and Type | Method and Description |
---|---|
static CellReference.NameType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CellReference.NameType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CellReference.NameType CELL
public static final CellReference.NameType NAMED_RANGE
public static final CellReference.NameType COLUMN
public static final CellReference.NameType ROW
public static final CellReference.NameType BAD_CELL_OR_NAMED_RANGE
public static CellReference.NameType[] values()
for (CellReference.NameType c : CellReference.NameType.values()) System.out.println(c);
public static CellReference.NameType 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 nullCopyright 2021 The Apache Software Foundation or its licensors, as applicable.