[]
Serializable, Comparable<LineDashStyle>, ConstableUse this enumeration with ILineFormat.setDashStyle(LineDashStyle) to control how a shape or connector line is rendered, such as solid, dotted, or dashed patterns.
IShape connector = worksheet.getShapes().addConnector(ConnectorType.Straight, 10, 10, 200, 100);
ILineFormat line = connector.getLine();
line.setDashStyle(LineDashStyle.DashDot);
Enum.EnumDesc<E extends Enum<E>>static LineDashStylestatic LineDashStyle[]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