eu.webtoolkit.jwt.chart
Enum WChart2DRenderer.AxisProperty

java.lang.Object
  extended by java.lang.Enum<WChart2DRenderer.AxisProperty>
      extended by eu.webtoolkit.jwt.chart.WChart2DRenderer.AxisProperty
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<WChart2DRenderer.AxisProperty>
Enclosing class:
WChart2DRenderer

public static enum WChart2DRenderer.AxisProperty
extends java.lang.Enum<WChart2DRenderer.AxisProperty>

Enumeration that specifies a property of the axes.


Enum Constant Summary
Grid
          Grid property.
Labels
          Labels property.
Line
          Grid property.
 
Method Summary
 int getValue()
          Returns the numerical representation of this enum.
static WChart2DRenderer.AxisProperty valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static WChart2DRenderer.AxisProperty[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Labels

public static final WChart2DRenderer.AxisProperty Labels
Labels property.


Grid

public static final WChart2DRenderer.AxisProperty Grid
Grid property.


Line

public static final WChart2DRenderer.AxisProperty Line
Grid property.

Method Detail

values

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

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

valueOf

public static WChart2DRenderer.AxisProperty valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getValue

public int getValue()
Returns the numerical representation of this enum.