public enum ExcelBorderPosition extends Enum<ExcelBorderPosition>
Enum Constant and Description |
---|
Bottom |
DiagonalLeft |
DiagonalRight |
Left |
Right |
Top |
Modifier and Type | Method and Description |
---|---|
static ExcelBorderPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExcelBorderPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExcelBorderPosition Top
public static final ExcelBorderPosition Bottom
public static final ExcelBorderPosition Left
public static final ExcelBorderPosition Right
public static final ExcelBorderPosition DiagonalLeft
public static final ExcelBorderPosition DiagonalRight
public static ExcelBorderPosition[] values()
for (ExcelBorderPosition c : ExcelBorderPosition.values()) System.out.println(c);
public static ExcelBorderPosition valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
jataylor@hairyfatguy.com