Class JsAggregationOperation

java.lang.Object
io.deephaven.web.client.api.tree.enums.JsAggregationOperation

@JsType(name="AggregationOperation", namespace="dh") @TsTypeDef(tsType="string") public class JsAggregationOperation extends Object
This enum describes the name of each supported operation/aggregation type when creating a `TreeTable`.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    The total number of values in the specified column.
    static final String
    The total number of values in the specified column.
    static final String
    The total number of values in the specified column.
    static final String
    The total number of values in the specified column.
    static final String
    The total number of values in the specified column.
    static final String
    The total number of values in the specified column.
    static final String
    The total number of values in the specified column.
    static final String
    The total number of values in the specified column.
    static final String
    The total number of values in the specified column.
    static final String
    The total number of values in the specified column.
    static final String
    Indicates that this column should not be aggregated.
    static final String
    The total number of values in the specified column.
    static final String
    The total number of values in the specified column.
    static final String
    The total number of values in the specified column.
    static final String
    The total number of values in the specified column.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static boolean
    canAggregateType(String aggregationType, String columnType)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • COUNT

      public static final String COUNT
      The total number of values in the specified column. Can apply to any type. String value is "Count".
      See Also:
    • COUNT_DISTINCT

      public static final String COUNT_DISTINCT
      The total number of values in the specified column. Can apply to any type. String value is "Count".
      See Also:
    • DISTINCT

      public static final String DISTINCT
      The total number of values in the specified column. Can apply to any type. String value is "Count".
      See Also:
    • MIN

      public static final String MIN
      The total number of values in the specified column. Can apply to any type. String value is "Count".
      See Also:
    • MAX

      public static final String MAX
      The total number of values in the specified column. Can apply to any type. String value is "Count".
      See Also:
    • SUM

      public static final String SUM
      The total number of values in the specified column. Can apply to any type. String value is "Count".
      See Also:
    • ABS_SUM

      public static final String ABS_SUM
      The total number of values in the specified column. Can apply to any type. String value is "Count".
      See Also:
    • VAR

      public static final String VAR
      The total number of values in the specified column. Can apply to any type. String value is "Count".
      See Also:
    • AVG

      public static final String AVG
      The total number of values in the specified column. Can apply to any type. String value is "Count".
      See Also:
    • MEDIAN

      public static final String MEDIAN
      The total number of values in the specified column. Can apply to any type. String value is "Count".
      See Also:
    • STD

      public static final String STD
      The total number of values in the specified column. Can apply to any type. String value is "Count".
      See Also:
    • FIRST

      public static final String FIRST
      The total number of values in the specified column. Can apply to any type. String value is "Count".
      See Also:
    • LAST

      public static final String LAST
      The total number of values in the specified column. Can apply to any type. String value is "Count".
      See Also:
    • UNIQUE

      public static final String UNIQUE
      The total number of values in the specified column. Can apply to any type. String value is "Count".
      See Also:
    • SKIP

      public static final String SKIP
      Indicates that this column should not be aggregated. String value is "Skip".
      See Also:
  • Constructor Details

    • JsAggregationOperation

      public JsAggregationOperation()
  • Method Details

    • canAggregateType

      @JsIgnore public static boolean canAggregateType(String aggregationType, String columnType)