public static enum CellRangeAddressBase.CellPosition extends java.lang.Enum<CellRangeAddressBase.CellPosition>
Enum Constant and Description |
---|
BOTTOM
range ending rows are equal
|
INSIDE
a cell or range is completely inside another range, without touching any edges (a cell in this position can't be in any others)
|
LEFT
range starting columns are equal
|
RIGHT
range ending columns are equal
|
TOP
range starting rows are equal
|
Modifier and Type | Method and Description |
---|---|
static CellRangeAddressBase.CellPosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CellRangeAddressBase.CellPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CellRangeAddressBase.CellPosition TOP
public static final CellRangeAddressBase.CellPosition BOTTOM
public static final CellRangeAddressBase.CellPosition LEFT
public static final CellRangeAddressBase.CellPosition RIGHT
public static final CellRangeAddressBase.CellPosition INSIDE
public static CellRangeAddressBase.CellPosition[] values()
for (CellRangeAddressBase.CellPosition c : CellRangeAddressBase.CellPosition.values()) System.out.println(c);
public static CellRangeAddressBase.CellPosition 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.