Enum HistogramPlot.YAggregate

    • Enum Constant Detail

      • MEAN

        public static final HistogramPlot.YAggregate MEAN
        Plot the mean of all y-values for spots falling into each bin.
      • MAX

        public static final HistogramPlot.YAggregate MAX
        Plot the maximum of all y-values for spots falling into each bin.
      • MIN

        public static final HistogramPlot.YAggregate MIN
        Plot the minimum of all y-values for spots falling into each bin.
      • STDEV

        public static final HistogramPlot.YAggregate STDEV
        Plot the standard deviation of all y-values for spots falling into each bin.
      • HILOSTDEV

        public static final HistogramPlot.YAggregate HILOSTDEV
        Plot a high/low bar for each bin with the mean +/- 1 standard deviation.
      • HILOMAXMIN

        public static final HistogramPlot.YAggregate HILOMAXMIN
        Plot a high/low bar for each bin with the maximum and minimum values.
    • Constructor Detail

      • YAggregate

        private YAggregate()
    • Method Detail

      • values

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

        public static HistogramPlot.YAggregate 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