public enum GridColumnTotalType extends Enum<GridColumnTotalType>
Enum Constant and Description |
---|
NONE
The column is not a non-total column
|
SUBTOTAL
The column is a sub total column
|
TOTAL
The column is a total column
|
Modifier and Type | Method and Description |
---|---|
static GridColumnTotalType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GridColumnTotalType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridColumnTotalType NONE
public static final GridColumnTotalType TOTAL
public static final GridColumnTotalType SUBTOTAL
public static GridColumnTotalType[] values()
for (GridColumnTotalType c : GridColumnTotalType.values()) System.out.println(c);
public static GridColumnTotalType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright 2009-2012 Micro Focus. All Rights Reserved.