public enum ChartType extends Enum<ChartType>
Modifier and Type | Method and Description |
---|---|
String |
displayName() |
static ChartType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChartType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
String |
xAxisLabel() |
String |
yAxisLabel() |
public static final ChartType LIFT
public static final ChartType ROC
public static final ChartType GAINS
public static ChartType[] values()
for (ChartType c : ChartType.values()) System.out.println(c);
public static ChartType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String displayName()
public String xAxisLabel()
public String yAxisLabel()
Copyright © 2020 Actian Corporation. All rights reserved.