Enum Class MarkerType

java.lang.Object
java.lang.Enum<MarkerType>
eu.webtoolkit.jwt.chart.MarkerType
All Implemented Interfaces:
Serializable, Comparable<MarkerType>, Constable

public enum MarkerType extends Enum<MarkerType>
Enumeration that specifies a type of point marker.

See Also:
  • Enum Constant Details

    • None

      public static final MarkerType None
      Do not draw point markers.
    • Square

      public static final MarkerType Square
      Mark points using a square.
    • Circle

      public static final MarkerType Circle
      Mark points using a circle.
    • Cross

      public static final MarkerType Cross
      Mark points using a cross (+).
    • XCross

      public static final MarkerType XCross
      Mark points using a cross (x).
    • Triangle

      public static final MarkerType Triangle
      Mark points using a triangle.
    • Custom

      public static final MarkerType Custom
      Mark points using a custom marker.
    • Star

      public static final MarkerType Star
      Mark points using a star.
    • InvertedTriangle

      public static final MarkerType InvertedTriangle
      Mark points using an inverted (upside-down) triangle.
    • Asterisk

      public static final MarkerType Asterisk
      Mark points using an asterisk (*).
    • Diamond

      public static final MarkerType Diamond
      Mark points using a diamond.
  • Method Details

    • values

      public static MarkerType[] 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 MarkerType 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
    • getValue

      public int getValue()
      Returns the numerical representation of this enum.