Enum Line.Dash

java.lang.Object
java.lang.Enum<Line.Dash>
tech.tablesaw.plotly.components.Line.Dash
All Implemented Interfaces:
Serializable, Comparable<Line.Dash>, java.lang.constant.Constable
Enclosing class:
Line

public static enum Line.Dash extends Enum<Line.Dash>
  • Enum Constant Details

    • SOLID

      public static final Line.Dash SOLID
    • DASH

      public static final Line.Dash DASH
    • DOT

      public static final Line.Dash DOT
    • LONG_DASH

      public static final Line.Dash LONG_DASH
    • LONG_DASH_DOT

      public static final Line.Dash LONG_DASH_DOT
    • DASH_DOT

      public static final Line.Dash DASH_DOT
  • Method Details

    • values

      public static Line.Dash[] 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 Line.Dash 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<Line.Dash>