public enum SeriesStudyType extends java.lang.Enum<SeriesStudyType>
Description goes here
Enum Constant and Description |
---|
CUSTOM
Custom study.
|
LINEAR_REGRESSION
Linear Regression study.
|
MOVING_AVERAGE_30
30-days Moving Averag study.
|
MOVING_AVERAGE_50
50-days Moving Average study.
|
MOVING_AVERAGE_7
7-days Moving Average study.
|
NONE
No study is added.
|
RATE_OF_CHANGE
Rate of Change study.
|
Modifier and Type | Method and Description |
---|---|
int |
getUnderlyingValue()
Returns a numeric value that represents the given com.softwarefx.chartfx.server.SeriesStudyType.
|
static SeriesStudyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SeriesStudyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SeriesStudyType CUSTOM
public static final SeriesStudyType NONE
public static final SeriesStudyType LINEAR_REGRESSION
public static final SeriesStudyType RATE_OF_CHANGE
public static final SeriesStudyType MOVING_AVERAGE_7
public static final SeriesStudyType MOVING_AVERAGE_30
public static final SeriesStudyType MOVING_AVERAGE_50
public static SeriesStudyType[] values()
for (SeriesStudyType c : SeriesStudyType.values()) System.out.println(c);
public static SeriesStudyType 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.SeriesStudyType.
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.