public enum DataBarFillType extends java.lang.Enum<DataBarFillType>
| Enum Constant and Description |
|---|
Gradient
Specifies that the data bar uses a color gradient.
|
Solid
Specifies that the data bar is a solid color.
|
| Modifier and Type | Method and Description |
|---|---|
static DataBarFillType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataBarFillType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataBarFillType Solid
public static final DataBarFillType Gradient
public static DataBarFillType[] values()
for (DataBarFillType c : DataBarFillType.values()) System.out.println(c);
public static DataBarFillType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null