public enum SummaryRow extends java.lang.Enum<SummaryRow>
| Enum Constant and Description |
|---|
Above
Specifies that the summary row will be positioned above the detail rows in
the outline.
|
Below
Specifies that the summary row will be positioned below the detail rows in
the outline.
|
| Modifier and Type | Method and Description |
|---|---|
static SummaryRow |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SummaryRow[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SummaryRow Below
public static final SummaryRow Above
public static SummaryRow[] values()
for (SummaryRow c : SummaryRow.values()) System.out.println(c);
public static SummaryRow 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