Enum Axis.Type

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

public static enum Axis.Type extends Enum<Axis.Type>
Sets the axis type. By default, plotly attempts to determined the axis type by looking into the data of the traces that referenced the axis in question.
  • Enum Constant Details

    • LINEAR

      public static final Axis.Type LINEAR
    • LOG

      public static final Axis.Type LOG
    • DATE

      public static final Axis.Type DATE
    • CATEGORY

      public static final Axis.Type CATEGORY
    • DEFAULT

      public static final Axis.Type DEFAULT
  • Method Details

    • values

      public static Axis.Type[] 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 Axis.Type 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<Axis.Type>