public enum DisplayBlanksAs extends java.lang.Enum<DisplayBlanksAs>
| Enum Constant and Description |
|---|
Interpolated
Specifies that values are interpolated into the chart.
|
NotPlotted
Specifies that blank cells are not plotted.
|
Zero
Specifies that blanks are plotted as zero.
|
| Modifier and Type | Method and Description |
|---|---|
static DisplayBlanksAs |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DisplayBlanksAs[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisplayBlanksAs NotPlotted
public static final DisplayBlanksAs Zero
public static final DisplayBlanksAs Interpolated
public static DisplayBlanksAs[] values()
for (DisplayBlanksAs c : DisplayBlanksAs.values()) System.out.println(c);
public static DisplayBlanksAs 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