[]
Serializable, Comparable<ArrowheadLength>, ConstableUsed with ILineFormat.setBeginArrowheadLength(ArrowheadLength) and ILineFormat.setEndArrowheadLength(ArrowheadLength) to control the arrowhead size on shape or connector lines.
IShape connector = worksheet.getShapes().addConnector(ConnectorType.Straight, 10, 10, 200, 100);
ILineFormat line = connector.getLine();
line.setBeginArrowheadStyle(ArrowheadStyle.Triangle);
line.setBeginArrowheadLength(ArrowheadLength.Long);
line.setEndArrowheadStyle(ArrowheadStyle.Triangle);
line.setEndArrowheadLength(ArrowheadLength.Short);
Enum.EnumDesc<E extends Enum<E>>static ArrowheadLengthstatic ArrowheadLength[]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