Enum Class Aggregate

Object
Enum<Aggregate>
Aggregate
All Implemented Interfaces:
Serializable, Comparable<Aggregate>, Constable

public enum Aggregate extends Enum<Aggregate>
Funcoes de agregacao
Author:
Eduardo
  • Enum Constant Details

    • SUM

      public static final Aggregate SUM
    • COUNT

      public static final Aggregate COUNT
    • MIN

      public static final Aggregate MIN
    • MAX

      public static final Aggregate MAX
    • AVERAGE

      public static final Aggregate AVERAGE
    • PRODUCT

      public static final Aggregate PRODUCT
    • VARIANCE_SUBSET

      public static final Aggregate VARIANCE_SUBSET
    • VARIANCE_POPULATION

      public static final Aggregate VARIANCE_POPULATION
    • STANDARD_DEVIATION_SUBSET

      public static final Aggregate STANDARD_DEVIATION_SUBSET
    • STANDARD_DEVIATION_POPULATION

      public static final Aggregate STANDARD_DEVIATION_POPULATION
    • CUSTOM

      public static final Aggregate CUSTOM
  • Method Details

    • values

      public static Aggregate[] 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 Aggregate 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
    • getName

      public String getName()