Enum Class ChartType

java.lang.Object
java.lang.Enum<ChartType>
com.almis.awe.builder.enumerates.ChartType
All Implemented Interfaces:
Serializable, Comparable<ChartType>, Constable

public enum ChartType extends Enum<ChartType>
Author:
dfuentes
  • Enum Constant Details

    • AREA

      public static final ChartType AREA
    • AREA_RANGE

      public static final ChartType AREA_RANGE
    • AREA_SPLINE

      public static final ChartType AREA_SPLINE
    • AREA_SPLINE_RANGE

      public static final ChartType AREA_SPLINE_RANGE
    • BUBBLE

      public static final ChartType BUBBLE
    • COLUMN

      public static final ChartType COLUMN
    • COLUMN_3D

      public static final ChartType COLUMN_3D
    • DONUT

      public static final ChartType DONUT
    • DONUT_3D

      public static final ChartType DONUT_3D
    • LINE

      public static final ChartType LINE
    • MIXED

      public static final ChartType MIXED
    • PIE

      public static final ChartType PIE
    • PIE_3D

      public static final ChartType PIE_3D
    • SCATTER

      public static final ChartType SCATTER
    • SEMICIRCLE

      public static final ChartType SEMICIRCLE
    • SPLINE

      public static final ChartType SPLINE
  • Method Details

    • values

      public static ChartType[] 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 ChartType 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
    • equalsStr

      public boolean equalsStr(String value)
      Equals method
      Parameters:
      value -
      Returns:
    • toString

      public String toString()
      Overrides:
      toString in class Enum<ChartType>