public static enum PivotTableBindingOptions.SequenceNulls extends java.lang.Enum<PivotTableBindingOptions.SequenceNulls>
SequenceNulls enum. Specify FIRST if you want the null values to appear at the beginning of a sort and Last if you want the null values to appear at the end of the sort.| Enum Constant and Description |
|---|
FIRST
Null values to appear at the beginning of a sort.
|
LAST
Null values to appear at the end of a sort.
|
| Modifier and Type | Method and Description |
|---|---|
static PivotTableBindingOptions.SequenceNulls |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PivotTableBindingOptions.SequenceNulls[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final PivotTableBindingOptions.SequenceNulls FIRST
public static final PivotTableBindingOptions.SequenceNulls LAST
public static PivotTableBindingOptions.SequenceNulls[] values()
for (PivotTableBindingOptions.SequenceNulls c : PivotTableBindingOptions.SequenceNulls.values())
System.out.println(c);
public static PivotTableBindingOptions.SequenceNulls 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