Enum Class Renderer

java.lang.Object
java.lang.Enum<Renderer>
io.jmix.pivottable.model.Renderer
All Implemented Interfaces:
JsonEnum, Serializable, Comparable<Renderer>, Constable

public enum Renderer extends Enum<Renderer> implements JsonEnum
An enum with predefined renderers.
  • Enum Constant Details

    • TABLE

      public static final Renderer TABLE
    • TABLE_BAR_CHART

      public static final Renderer TABLE_BAR_CHART
    • HEATMAP

      public static final Renderer HEATMAP
    • ROW_HEATMAP

      public static final Renderer ROW_HEATMAP
    • COL_HEATMAP

      public static final Renderer COL_HEATMAP
    • LINE_CHART

      public static final Renderer LINE_CHART
    • BAR_CHART

      public static final Renderer BAR_CHART
    • STACKED_BAR_CHART

      public static final Renderer STACKED_BAR_CHART
    • HORIZONTAL_BAR_CHART

      public static final Renderer HORIZONTAL_BAR_CHART
    • HORIZONTAL_STACKED_BAR_CHART

      public static final Renderer HORIZONTAL_STACKED_BAR_CHART
    • AREA_CHART

      public static final Renderer AREA_CHART
    • SCATTER_CHART

      public static final Renderer SCATTER_CHART
    • TREEMAP

      public static final Renderer TREEMAP
    • TSV_EXPORT

      public static final Renderer TSV_EXPORT
  • Method Details

    • values

      public static Renderer[] 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 Renderer 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
    • getId

      public String getId()
    • fromId

      @Nullable public static Renderer fromId(String id)
    • toString

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