public enum BordersIndex extends java.lang.Enum<BordersIndex>
| Enum Constant and Description |
|---|
DiagonalDown
Specifies that the border runs from the upper left-hand corner to the lower
right of each cell in the range.
|
DiagonalUp
Specifies that the border runs from the lower left-hand corner to the upper
right of each cell in the range.
|
EdgeBottom
Specifies the border is at the bottom of the range.
|
EdgeLeft
Specifies that the border is at the left-hand edge of the range.
|
EdgeRight
Specifies that the border is at the right-hand edge of the range.
|
EdgeTop
Specifies that the border is at the top of the range.
|
InsideHorizontal
Specifies that there are horizontal borders for all cells in the range except
borders on the outside of the range.
|
InsideVertical
Specifies that there are vertical borders for all the cells in the range
except borders on the outside of the range.
|
| Modifier and Type | Method and Description |
|---|---|
static BordersIndex |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BordersIndex[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BordersIndex DiagonalDown
public static final BordersIndex DiagonalUp
public static final BordersIndex EdgeBottom
public static final BordersIndex EdgeLeft
public static final BordersIndex EdgeRight
public static final BordersIndex EdgeTop
public static final BordersIndex InsideHorizontal
public static final BordersIndex InsideVertical
public static BordersIndex[] values()
for (BordersIndex c : BordersIndex.values()) System.out.println(c);
public static BordersIndex 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