[]
Serializable, Comparable<LineStyle>, ConstableUse this enum with ILineFormat to apply a predefined compound line style to a shape line, such as a single line, two thin lines, or a thick line combined with thin lines.
IShape connector = worksheet.getShapes().addConnector(ConnectorType.Straight, 10, 10, 200, 100);
ILineFormat line = connector.getLine();
line.setStyle(LineStyle.ThickBetweenThin);
Enum.EnumDesc<E extends Enum<E>>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