Enum Class Net.AggregationFn

java.lang.Object
java.lang.Enum<Net.AggregationFn>
tech.deplant.java4ever.binding.Net.AggregationFn
All Implemented Interfaces:
Serializable, Comparable<Net.AggregationFn>, Constable
Enclosing class:
Net

public static enum Net.AggregationFn extends Enum<Net.AggregationFn>
  • Enum Constant Details

    • COUNT

      public static final Net.AggregationFn COUNT
      Returns count of filtered record
    • MIN

      public static final Net.AggregationFn MIN
      Returns the minimal value for a field in filtered records
    • MAX

      public static final Net.AggregationFn MAX
      Returns the maximal value for a field in filtered records
    • SUM

      public static final Net.AggregationFn SUM
      Returns a sum of values for a field in filtered records
    • AVERAGE

      public static final Net.AggregationFn AVERAGE
      Returns an average value for a field in filtered records
  • Method Details

    • values

      public static Net.AggregationFn[] 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 Net.AggregationFn 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