public enum BorderLineSide extends Enum<BorderLineSide>
Enum Constant and Description |
---|
EAST
Side constant that defines the index of the eastern border line.
|
NORTH
Side constant that defines the index of the northern border line.
|
SOUTH
Side constant that defines the index of the southern border line.
|
WEST
Side constant that defines the index of the western border line.
|
Modifier and Type | Method and Description |
---|---|
static BorderLineSide |
fromOrdinal(int ordinal) |
int |
value() |
static BorderLineSide |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BorderLineSide[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BorderLineSide EAST
public static final BorderLineSide NORTH
public static final BorderLineSide SOUTH
public static final BorderLineSide WEST
public static final BorderLineSide fromOrdinal(int ordinal)
public int value()
public static BorderLineSide valueOf(String name)
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullname
- the name of the enum constant to be returned.public static BorderLineSide[] values()
for (BorderLineSide c : BorderLineSide.values()) System.out.println(c);