public enum HighLowClose extends java.lang.Enum<HighLowClose>
Enum Constant and Description |
---|
CLOSE
The Close Series in a HighLowClose chart (index 1).
|
HIGH
The High Series in a HighLowClose chart (index 2).
|
LOW
The Low Series in a HighLowClose chart (index 0).
|
Modifier and Type | Method and Description |
---|---|
int |
getUnderlyingValue()
Returns a numeric value that represents the given com.softwarefx.chartfx.server.HighLowClose.
|
static HighLowClose |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HighLowClose[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HighLowClose LOW
public static final HighLowClose CLOSE
public static final HighLowClose HIGH
public static HighLowClose[] values()
for (HighLowClose c : HighLowClose.values()) System.out.println(c);
public static HighLowClose 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.HighLowClose.
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.