Enum Class Enums.PathType

java.lang.Object
java.lang.Enum<Enums.PathType>
com.motivewave.platform.sdk.common.Enums.PathType
All Implemented Interfaces:
Serializable, Comparable<Enums.PathType>, Constable
Enclosing interface:
Enums

public static enum Enums.PathType extends Enum<Enums.PathType>
Determines how a series is drawn.
  • Enum Constant Details

    • PATH

      public static final Enums.PathType PATH
      Series of lines connecting points.
    • BAR

      public static final Enums.PathType BAR
      Series of vertical bars.
    • POINT

      public static final Enums.PathType POINT
      Series of points.
  • Method Details

    • values

      public static Enums.PathType[] 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 Enums.PathType 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
    • getShortCode

      public String getShortCode()
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Enums.PathType>
    • fromCode

      public static Enums.PathType fromCode(String str)