public enum FieldUsage extends java.lang.Enum<FieldUsage>
Description goes here
Enum Constant and Description |
---|
COLUMN_HEADING
Instructs Chart FX to treat the selected field as a ColumnHeading.
|
DEFAULT
If the field is numeric, use it as an additional data series.
|
FROM_VALUE
Instructs Chart FX to treat the selected field as a number to be used to set initial values for data points to achieve floating bars and area charts.
|
KEY_LABEL
Instructs Chart FX to treat the selected field as a string that will be used as the key label for the X Axis.
|
LABEL
Instructs Chart FX to treat the selected field as a string.
|
NOT_USED
Instructs Chart FX to ignore this field from the result set.
|
ROW_HEADING
Instructs Chart FX to treat the selected field as a Row Heading.
|
VALUE
Instructs Chart FX to treat the selected field as a number.
|
XVALUE
Instructs Chart FX to treat the selected field as a number to be used as the X axis coordinate.
|
Modifier and Type | Method and Description |
---|---|
int |
getUnderlyingValue()
Returns a numeric value that represents the given com.softwarefx.chartfx.server.FieldUsage.
|
static FieldUsage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FieldUsage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldUsage DEFAULT
public static final FieldUsage LABEL
public static final FieldUsage VALUE
public static final FieldUsage XVALUE
public static final FieldUsage FROM_VALUE
public static final FieldUsage KEY_LABEL
public static final FieldUsage COLUMN_HEADING
public static final FieldUsage ROW_HEADING
public static final FieldUsage NOT_USED
public static FieldUsage[] values()
for (FieldUsage c : FieldUsage.values()) System.out.println(c);
public static FieldUsage 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 nullpublic int getUnderlyingValue()
Returns a numeric value that represents the given com.softwarefx.chartfx.server.FieldUsage.
2014 Software FX, Inc. All Rights Reserved. Chart FX is a registered trademark of Software FX, Inc
All other names are trademarks or registered trademarks of their respective owners.