com.androidplot.xy
Enum XYStepMode

java.lang.Object
  extended by java.lang.Enum<XYStepMode>
      extended by com.androidplot.xy.XYStepMode
All Implemented Interfaces:
Serializable, Comparable<XYStepMode>

public enum XYStepMode
extends Enum<XYStepMode>

INCREMENTAL_VALUE - (default) doBeforeDraw a tick every n values. INCREMENTAL_PIXEL - doBeforeDraw a tick every n pixels. SUBDIVIDE - doBeforeDraw n number of evenly spaced ticks.


Enum Constant Summary
INCREMENT_BY_PIXELS
           
INCREMENT_BY_VAL
           
SUBDIVIDE
           
 
Method Summary
static XYStepMode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static XYStepMode[] 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

SUBDIVIDE

public static final XYStepMode SUBDIVIDE

INCREMENT_BY_VAL

public static final XYStepMode INCREMENT_BY_VAL

INCREMENT_BY_PIXELS

public static final XYStepMode INCREMENT_BY_PIXELS
Method Detail

values

public static XYStepMode[] 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 (XYStepMode c : XYStepMode.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static XYStepMode 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 © 2011. All Rights Reserved.