public enum CellReferenceType extends java.lang.Enum<CellReferenceType>
| Enum Constant and Description |
|---|
A1
Cells are referenced in the form A1, B4, etc.
|
R1C1
Cells are referenced in the form R1C1, R4C2, etc.
|
UNKNOWN
The cell reference type is not defined explicitly by
A1 is the default in this case. |
| Modifier and Type | Method and Description |
|---|---|
static CellReferenceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CellReferenceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CellReferenceType A1
public static final CellReferenceType R1C1
public static final CellReferenceType UNKNOWN
A1 is the default in this case.public static CellReferenceType[] values()
for (CellReferenceType c : CellReferenceType.values()) System.out.println(c);
public static CellReferenceType 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 2022 The Apache Software Foundation or its licensors, as applicable.]]>