|
Chart FX 7 for Java Server | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<HighLowClose>
com.softwarefx.chartfx.server.HighLowClose
public enum HighLowClose
This enum gets the index value of a series for a HighLowClose chart.
Enum Constant Summary | |
---|---|
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). |
Method Summary | |
---|---|
static EnumSet<HighLowClose> |
getEnumSetValue(int value)
Returns a EnumSet that represents the given numeric value. |
static HighLowClose |
getEnumValue(int value)
Returns a Enum Item that represents the given numeric value. |
static int |
getUnderlyingValue(EnumSet<HighLowClose> value)
Returns a numeric value that represents the given EnumSet or Enum item. |
static int |
getUnderlyingValue(HighLowClose value)
Returns a numeric value that represents the given EnumSet or Enum item. |
static HighLowClose |
valueOf(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. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final HighLowClose LOW
public static final HighLowClose CLOSE
public static final HighLowClose HIGH
Method Detail |
---|
public static HighLowClose[] values()
for (HighLowClose c : HighLowClose.values()) System.out.println(c);
public static HighLowClose valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic static EnumSet<HighLowClose> getEnumSetValue(int value)
Returns a EnumSet that represents the given numeric value.
value
- numeric representation of the Enumset.public static HighLowClose getEnumValue(int value)
Returns a Enum Item that represents the given numeric value.
value
- numeric representation of the Enum item.public static int getUnderlyingValue(HighLowClose value)
Returns a numeric value that represents the given EnumSet or Enum item.
value
- A Enum Item or EnumSet.public static int getUnderlyingValue(EnumSet<HighLowClose> value)
Returns a numeric value that represents the given EnumSet or Enum item.
value
- A Enum Item or EnumSet.
|
http://www.softwarefx.com | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |