Package com.itextpdf.svg

Enum MarkerVertexType

java.lang.Object
java.lang.Enum<MarkerVertexType>
com.itextpdf.svg.MarkerVertexType
All Implemented Interfaces:
Serializable, Comparable<MarkerVertexType>, java.lang.constant.Constable

public enum MarkerVertexType extends Enum<MarkerVertexType>
Defines a property of markable elements (, , or ) which is used to determine at which verticies a marker should be drawn.
  • Enum Constant Details

    • MARKER_START

      public static final MarkerVertexType MARKER_START
      Specifies that marker will be drawn only at the first vertex of element.
    • MARKER_MID

      public static final MarkerVertexType MARKER_MID
      Specifies that marker will be drawn at every vertex except the first and last.
    • MARKER_END

      public static final MarkerVertexType MARKER_END
      Specifies that marker will be drawn only at the last vertex of element.
  • Method Details

    • values

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

      public static MarkerVertexType valueOf (String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<MarkerVertexType>