Enum Class StepType

java.lang.Object
java.lang.Enum<StepType>
com.vaadin.flow.component.charts.model.StepType
All Implemented Interfaces:
ChartEnum, Serializable, Comparable<StepType>, Constable

public enum StepType extends Enum<StepType> implements ChartEnum
Defines different step line types. Configurable in PlotOptionsLine.
  • Enum Constant Details

    • CENTER

      public static final StepType CENTER
    • LEFT

      public static final StepType LEFT
    • NONE

      public static final StepType NONE
  • Method Details

    • values

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