Enum Class SeriesType

java.lang.Object
java.lang.Enum<SeriesType>
com.iizix.prop.ui.chart.series.SeriesType
All Implemented Interfaces:
Serializable, Comparable<SeriesType>, Constable

public enum SeriesType extends Enum<SeriesType>
The series type.
Author:
Christopher Mindus
  • Enum Constant Details

    • NO_VALUE

      public static final SeriesType NO_VALUE
      No-value.
    • SIMPLE

      public static final SeriesType SIMPLE
      Simple array of numbers.
    • X_Y

      public static final SeriesType X_Y
      X/Y values.
    • BUBBLE

      public static final SeriesType BUBBLE
      Bubble: X, Y and size.
    • OHLC

      public static final SeriesType OHLC
      OHLC: Open-High-Low-Close and optionally mid.
  • Method Details

    • values

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