[]
Serializable, Comparable<DataBarDirection>, ConstableUse this enumeration with IDataBar.setDirection(DataBarDirection) to control how a data bar is displayed in cells that use data bar conditional formatting.
worksheet.getRange("A1:A3").setValue(new Object[][] {{10}, {20}, {30}});
IDataBar dataBar = worksheet.getRange("A1:A3").getFormatConditions().addDatabar();
dataBar.setDirection(DataBarDirection.RightToLeft);
DataBarDirection direction = dataBar.getDirection();
Enum.EnumDesc<E extends Enum<E>>static DataBarDirectionstatic DataBarDirection[]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