com.vaadin.flow.component.charts.model.

Enum Class DashStyle

java.lang.Object
java.lang.Enum<DashStyle>
com.vaadin.flow.component.charts.model.DashStyle

All Implemented Interfaces:

ChartEnum, Serializable, Comparable<DashStyle>, Constable

public enum DashStyle extends Enum<DashStyle> implements ChartEnum

Dash styles used to render lines.

Visually they look like this:

  • Enum Constant Details

    • SOLID

      public static final DashStyle SOLID
    • SHORTDASH

      public static final DashStyle SHORTDASH
    • SHORTDOT

      public static final DashStyle SHORTDOT
    • SHORTDASHDOT

      public static final DashStyle SHORTDASHDOT
    • SHORTDASHDOTDOT

      public static final DashStyle SHORTDASHDOTDOT
    • DOT

      public static final DashStyle DOT
    • DASH

      public static final DashStyle DASH
    • LONGDASH

      public static final DashStyle LONGDASH
    • DASHDOT

      public static final DashStyle DASHDOT
    • LONGDASHDOT

      public static final DashStyle LONGDASHDOT
    • LONGDASHDOTDOT

      public static final DashStyle LONGDASHDOTDOT
  • Method Details

    • values

      public static DashStyle[] 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 DashStyle 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

    • toString

      public String toString()

      Overrides:

      toString in class Enum<DashStyle>