Enum StatFunction

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<StatFunction>

    public enum StatFunction
    extends java.lang.Enum<StatFunction>
    • Enum Constant Detail

      • _STAT_F_WGAVG

        public static final StatFunction _STAT_F_WGAVG
      • _STAT_F_INTEGRAL

        public static final StatFunction _STAT_F_INTEGRAL
      • _STAT_F_COUNT

        public static final StatFunction _STAT_F_COUNT
      • _STAT_F_FILTER

        public static final StatFunction _STAT_F_FILTER
      • _STAT_F_INCREMENT

        public static final StatFunction _STAT_F_INCREMENT
      • _STAT_F_DELTA

        public static final StatFunction _STAT_F_DELTA
      • _STAT_F_ECOAVG

        public static final StatFunction _STAT_F_ECOAVG
      • _STAT_F_GT_TIME

        public static final StatFunction _STAT_F_GT_TIME
      • _STAT_F_GE_TIME

        public static final StatFunction _STAT_F_GE_TIME
      • _STAT_F_LT_TIME

        public static final StatFunction _STAT_F_LT_TIME
      • _STAT_F_LE_TIME

        public static final StatFunction _STAT_F_LE_TIME
      • _STAT_F_MAXT

        public static final StatFunction _STAT_F_MAXT
      • _STAT_F_MINT

        public static final StatFunction _STAT_F_MINT
      • _STAT_F_NUMPEEKS

        public static final StatFunction _STAT_F_NUMPEEKS
      • _STAT_F_SUM_POSITIVE

        public static final StatFunction _STAT_F_SUM_POSITIVE
      • _STAT_F_SUM_NEGATIVE

        public static final StatFunction _STAT_F_SUM_NEGATIVE
      • _STAT_F_AVG_POSITIVE

        public static final StatFunction _STAT_F_AVG_POSITIVE
      • _STAT_F_AVG_NEGATIVE

        public static final StatFunction _STAT_F_AVG_NEGATIVE
      • _STAT_F_ADDITION

        public static final StatFunction _STAT_F_ADDITION
      • _STAT_F_TIMESLICE

        public static final StatFunction _STAT_F_TIMESLICE
      • _STAT_F_NUMPITS

        public static final StatFunction _STAT_F_NUMPITS
      • _STAT_F_ADDITION_PARAM

        public static final StatFunction _STAT_F_ADDITION_PARAM
      • _STAT_F_INCREMENT_PARAM

        public static final StatFunction _STAT_F_INCREMENT_PARAM
      • _STAT_F_DELTA_PARAM

        public static final StatFunction _STAT_F_DELTA_PARAM
    • Method Detail

      • values

        public static StatFunction[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (StatFunction c : StatFunction.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static StatFunction valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • _toI

        public abstract int _toI()