public static enum LinePlotOptions.Compare extends Enum<LinePlotOptions.Compare>
| Enum Constant and Description |
|---|
PERCENT
Compare the lines based on the percentage difference in the two series
|
VALUE
Compare the lines based on the absolute difference in the two series
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static LinePlotOptions.Compare |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LinePlotOptions.Compare[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LinePlotOptions.Compare PERCENT
public static final LinePlotOptions.Compare VALUE
public static LinePlotOptions.Compare[] values()
for (LinePlotOptions.Compare c : LinePlotOptions.Compare.values()) System.out.println(c);
public static LinePlotOptions.Compare 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 toString()
toString in class Enum<LinePlotOptions.Compare>Copyright © 2015. All Rights Reserved.