[]
Serializable, Comparable<BorderLineStyle>, ConstableUse this enum with border-related APIs such as IBorder.setLineStyle(BorderLineStyle) to control how a cell or range border is drawn.
IRange range = worksheet.getRange("A1:B2");
range.setValue("Test");
range.getBorders().get(BordersIndex.EdgeBottom).setColor(Color.GetBlue());
range.getBorders().get(BordersIndex.EdgeBottom).setLineStyle(BorderLineStyle.Thick);
Enum.EnumDesc<E extends Enum<E>>static BorderLineStyleforValue(int value) intgetValue()static BorderLineStylestatic BorderLineStyle[]values()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 nullUse this method to convert an integer value, such as one obtained from getValue(), back to the matching BorderLineStyle constant.
value - The integer value representing the enum constant.BorderLineStyle enum constant that corresponds to the specified value.ArrayIndexOutOfBoundsException - if value is outside the range of defined enum values.