com.androidplot.xy
Enum SimpleXYSeries.ArrayFormat
java.lang.Object
java.lang.Enum<SimpleXYSeries.ArrayFormat>
com.androidplot.xy.SimpleXYSeries.ArrayFormat
- All Implemented Interfaces:
- Serializable, Comparable<SimpleXYSeries.ArrayFormat>
- Enclosing class:
- SimpleXYSeries
public static enum SimpleXYSeries.ArrayFormat
- extends Enum<SimpleXYSeries.ArrayFormat>
Y_VALS_ONLY
public static final SimpleXYSeries.ArrayFormat Y_VALS_ONLY
XY_VALS_INTERLEAVED
public static final SimpleXYSeries.ArrayFormat XY_VALS_INTERLEAVED
values
public static SimpleXYSeries.ArrayFormat[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (SimpleXYSeries.ArrayFormat c : SimpleXYSeries.ArrayFormat.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static SimpleXYSeries.ArrayFormat valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright © 2010-2013 androidplot.com. All Rights Reserved.