public enum SparklineRowCol extends java.lang.Enum<SparklineRowCol>
| Enum Constant and Description |
|---|
ColumnsSquare
Specifies to plot the data by columns.
|
NonSquare
Specifies that the sparkLine is not bound to data in a square-shaped range.
|
RowsSquare
Specifies to plot the data by rows.
|
| Modifier and Type | Method and Description |
|---|---|
static SparklineRowCol |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SparklineRowCol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SparklineRowCol NonSquare
public static final SparklineRowCol RowsSquare
public static final SparklineRowCol ColumnsSquare
public static SparklineRowCol[] values()
for (SparklineRowCol c : SparklineRowCol.values()) System.out.println(c);
public static SparklineRowCol 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