public enum ReferenceStyle extends java.lang.Enum<ReferenceStyle>
| Enum Constant and Description |
|---|
A1
Specifies to use A1 style.
|
R1C1
Specifies to use R1C1 style.
|
| Modifier and Type | Method and Description |
|---|---|
static ReferenceStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReferenceStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReferenceStyle A1
public static final ReferenceStyle R1C1
public static ReferenceStyle[] values()
for (ReferenceStyle c : ReferenceStyle.values()) System.out.println(c);
public static ReferenceStyle 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