Enum Class Aggregator

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

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

    • LOWER_BOUND_80

      public static final Aggregator LOWER_BOUND_80
    • UPPER_BOUND_80

      public static final Aggregator UPPER_BOUND_80
    • AVERAGE

      public static final Aggregator AVERAGE
    • COUNT

      public static final Aggregator COUNT
    • COUNT_UNIQUE_VALUES

      public static final Aggregator COUNT_UNIQUE_VALUES
    • COUNT_AS_FRACTION_OF_COLUMNS

      public static final Aggregator COUNT_AS_FRACTION_OF_COLUMNS
    • COUNT_AS_FRACTION_OF_ROWS

      public static final Aggregator COUNT_AS_FRACTION_OF_ROWS
    • COUNT_AS_FRACTION_OF_TOTAL

      public static final Aggregator COUNT_AS_FRACTION_OF_TOTAL
    • CUSTOM_80_LOWER_BOUND

      public static final Aggregator CUSTOM_80_LOWER_BOUND
    • CUSTOM_80_UPPER_BOUND

      public static final Aggregator CUSTOM_80_UPPER_BOUND
    • CUSTOM_AVERAGE

      public static final Aggregator CUSTOM_AVERAGE
    • CUSTOM_MAXIMUM

      public static final Aggregator CUSTOM_MAXIMUM
    • CUSTOM_MINIMUM

      public static final Aggregator CUSTOM_MINIMUM
    • CUSTOM_SUM

      public static final Aggregator CUSTOM_SUM
    • CUSTOM_SUM_OVER_SUM

      public static final Aggregator CUSTOM_SUM_OVER_SUM
    • INTEGER_SUM

      public static final Aggregator INTEGER_SUM
    • MAXIMUM

      public static final Aggregator MAXIMUM
    • MINIMUM

      public static final Aggregator MINIMUM
    • SUM

      public static final Aggregator SUM
    • SUM_AS_FRACTION_OF_COLUMNS

      public static final Aggregator SUM_AS_FRACTION_OF_COLUMNS
    • SUM_AS_FRACTION_OF_ROWS

      public static final Aggregator SUM_AS_FRACTION_OF_ROWS
    • SUM_AS_FRACTION_OF_TOTAL

      public static final Aggregator SUM_AS_FRACTION_OF_TOTAL
    • SUM_OVER_SUM

      public static final Aggregator SUM_OVER_SUM
  • Method Details

    • values

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