public enum PivotFieldOrientation extends java.lang.Enum<PivotFieldOrientation>
| Enum Constant and Description |
|---|
ColumnField
Specifies column.
|
DataField
Specifies data.
|
Hidden
Specifies hidden.
|
PageField
Specifies page.
|
RowField
Specifies row.
|
| Modifier and Type | Method and Description |
|---|---|
static PivotFieldOrientation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PivotFieldOrientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PivotFieldOrientation Hidden
public static final PivotFieldOrientation RowField
public static final PivotFieldOrientation ColumnField
public static final PivotFieldOrientation PageField
public static final PivotFieldOrientation DataField
public static PivotFieldOrientation[] values()
for (PivotFieldOrientation c : PivotFieldOrientation.values()) System.out.println(c);
public static PivotFieldOrientation 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