public enum FieldOrientation extends Enum<FieldOrientation> implements AttributeValue
| Enum Constant and Description |
|---|
COLUMN
field specifies a category column
|
DATA
field specifies a data column
|
HIDDEN
field has a corresponding column in a data pilot's source but are not visible in the data
pilot table.
|
PAGE
specifies that an automatic filter (one that allows to choose one of the values that are
contained in the column) should be generated for the corresponding column.
|
ROW
specifies a category row
|
| Modifier and Type | Method and Description |
|---|---|
CharSequence |
getValue() |
String |
toString() |
static FieldOrientation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldOrientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldOrientation COLUMN
public static final FieldOrientation DATA
public static final FieldOrientation HIDDEN
public static final FieldOrientation PAGE
public static final FieldOrientation ROW
public static FieldOrientation[] values()
for (FieldOrientation c : FieldOrientation.values()) System.out.println(c);
public static FieldOrientation 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 nullpublic String toString()
toString in class Enum<FieldOrientation>public CharSequence getValue()
getValue in interface AttributeValueCopyright © 2016–2021. All rights reserved.