public static enum Plot.PlotFlag extends java.lang.Enum<Plot.PlotFlag>
Enum Constant and Description |
---|
LINK_ASPECT
Keeps x & y scale the same = argmin(x,y)
|
Modifier and Type | Method and Description |
---|---|
static Plot.PlotFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Plot.PlotFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Plot.PlotFlag LINK_ASPECT
public static Plot.PlotFlag[] values()
for (Plot.PlotFlag c : Plot.PlotFlag.values()) System.out.println(c);
public static Plot.PlotFlag 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 null