[]
Serializable, Comparable<ReferenceStyle>, ConstableUse this enum with Workbook.setReferenceStyle(ReferenceStyle) to control whether formulas and references use A1 notation or R1C1 notation.
workbook.setReferenceStyle(ReferenceStyle.R1C1);
worksheet.getRange("A1").setFormula("=R[1]C[1]");
Enum.EnumDesc<E extends Enum<E>>static ReferenceStylestatic ReferenceStyle[]values()Absolute references are written as R1C1. Relative references are written as R[y]C[x], where y is the relative row offset and x is the relative column offset.
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum class has no constant with the specified nameNullPointerException - if the argument is null