public enum DataSourceStyles extends java.lang.Enum<DataSourceStyles>
Enum Constant and Description |
---|
DATES_AS_LABELS
Instructs Chart FX to use date values as labels.
|
DEFAULT
Default.
|
KEEP_LABELS
Instructs Chart FX to retain configured label strings.
|
KEEP_SCALE
Instructs Chart FX to retain the axis scaling.
|
KEEP_SERIES_LEGEND
Instructs Chart FX to retain configured series label strings.
|
NONE
Use Chart FX default field assignments.
|
READ_XVALUES
Instructs Chart FX that the data read will include both values and x values.
|
READ_YFROM_VALUES
Instructs Chart FX that the data read will include Y values.
|
TRANSPOSE
See Remarks.
|
USE_BLOB_TEXT
Use as text from a "binary large object".
|
Modifier and Type | Method and Description |
---|---|
int |
getUnderlyingValue()
Returns a numeric value that represents the given com.softwarefx.chartfx.server.DataSourceStyles.
|
static int |
getUnderlyingValue(java.util.EnumSet<DataSourceStyles> value)
Returns a numeric value that represents the given com.softwarefx.chartfx.server.DataSourceStyles.
|
static DataSourceStyles |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataSourceStyles[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataSourceStyles KEEP_SCALE
public static final DataSourceStyles TRANSPOSE
public static final DataSourceStyles USE_BLOB_TEXT
public static final DataSourceStyles KEEP_SERIES_LEGEND
public static final DataSourceStyles KEEP_LABELS
public static final DataSourceStyles READ_XVALUES
public static final DataSourceStyles READ_YFROM_VALUES
public static final DataSourceStyles DATES_AS_LABELS
public static final DataSourceStyles NONE
public static final DataSourceStyles DEFAULT
public static DataSourceStyles[] values()
for (DataSourceStyles c : DataSourceStyles.values()) System.out.println(c);
public static DataSourceStyles 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.DataSourceStyles.
public static int getUnderlyingValue(java.util.EnumSet<DataSourceStyles> value)
Returns a numeric value that represents the given com.softwarefx.chartfx.server.DataSourceStyles.
value
- A Enum Item.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.