[]
Serializable, Comparable<AboveBelow>, ConstableThis enum is used with IAboveAverage.setAboveBelow(AboveBelow) to control whether the rule matches values that are above, below, equal to or above, equal to or below the average, or above or below the standard deviation.
worksheet.getRange("A1:A5").setValue(new Object[][] {
{10}, {20}, {30}, {40}, {100}
});
IAboveAverage averageCondition = worksheet.getRange("A1:A5").getFormatConditions().addAboveAverage();
averageCondition.setAboveBelow(AboveBelow.AboveAverage);
averageCondition.getInterior().setColor(Color.GetYellow());
Enum.EnumDesc<E extends Enum<E>>static AboveBelowstatic AboveBelow[]values()name - the name of the enum constant to be returned.IllegalArgumentException - if this enum class has no constant with the specified nameNullPointerException - if the argument is null