[]
Serializable, Comparable<ConnectorType>, ConstableUse this enum with connector APIs such as IShapes.addConnector(ConnectorType,double,double,double,double) and IConnectorFormat.setType(ConnectorType) to control whether a connector is straight, elbowed, or curved.
IShape connector = worksheet.getShapes().addConnector(ConnectorType.Straight, 20, 20, 120, 80);
connector.getConnectorFormat().setType(ConnectorType.Elbow);
Enum.EnumDesc<E extends Enum<E>>static ConnectorTypestatic ConnectorType[]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