Enum UtilityTraceFunctionType

    • Enum Constant Detail

      • ADD

        public static final UtilityTraceFunctionType ADD
        Computes the sum of the network attribute from each applicable element.
        Since:
        100.7.0
      • AVERAGE

        public static final UtilityTraceFunctionType AVERAGE
        Computes the average value of the network attribute from each applicable element.
        Since:
        100.7.0
      • MAX

        public static final UtilityTraceFunctionType MAX
        Computes the maximum value of the network attribute from each applicable element.
        Since:
        100.7.0
      • MIN

        public static final UtilityTraceFunctionType MIN
        Computes the minimum value of the network attribute from each applicable element.
        Since:
        100.7.0
      • SUBTRACT

        public static final UtilityTraceFunctionType SUBTRACT
        Takes the network attribute value from the starting point as the base number, and then subtracts the value of the network attribute from each applicable element.
        Since:
        100.7.0
    • Method Detail

      • values

        public static UtilityTraceFunctionType[] 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 (UtilityTraceFunctionType c : UtilityTraceFunctionType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static UtilityTraceFunctionType valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null