[]
Serializable, Comparable<LineCapStyle>, ConstableUse this enum with ILineFormat.setCapStyle(LineCapStyle) to control how the end of a shape line is rendered, such as flat, square, or rounded.
IShape shape = worksheet.getShapes().addShape(AutoShapeType.Rectangle, 1, 1, 100, 60);
shape.getLine().setWeight(6);
shape.getLine().setCapStyle(LineCapStyle.Round);
Enum.EnumDesc<E extends Enum<E>>static LineCapStylestatic LineCapStyle[]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 null