[]
        
(Showing Draft Content)

ArrowheadStyle

Enum Class ArrowheadStyle

java.lang.Object
java.lang.Enum<ArrowheadStyle>
com.grapecity.documents.excel.drawing.ArrowheadStyle
All Implemented Interfaces:
Serializable, Comparable<ArrowheadStyle>, Constable

public enum ArrowheadStyle extends Enum<ArrowheadStyle>
Specifies the style of the arrowhead at the end of a line.
  • Enum Constant Details

    • None

      public static final ArrowheadStyle None
      Specifies no arrowhead.
    • Triangle

      public static final ArrowheadStyle Triangle
      Specifies a triangular arrow.
    • Open

      public static final ArrowheadStyle Open
      Specifies an open arrow.
    • Stealth

      public static final ArrowheadStyle Stealth
      Specifies a stealth-shaped arrow.
    • Diamond

      public static final ArrowheadStyle Diamond
      Specifies a diamond-shaped arrow.
    • Oval

      public static final ArrowheadStyle Oval
      Specifies an oval-shaped arrow.
  • Method Details

    • values

      public static ArrowheadStyle[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ArrowheadStyle valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null