lt.monarch.chart.style.enums
Enum TickLayout

java.lang.Object
  extended by java.lang.Enum<TickLayout>
      extended by lt.monarch.chart.style.enums.TickLayout
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TickLayout>, StyleObject

public enum TickLayout
extends java.lang.Enum<TickLayout>
implements StyleObject

Tick layout enumeration


Enum Constant Summary
Enum Constant and Description
INSIDE
          Draw ticks inside the drawing area
INVISIBLE
          Do not draw ticks
OUTSIDE
          Draw ticks outside the drawing area
 
Method Summary
Modifier and Type Method and Description
static TickLayout valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TickLayout[] 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

OUTSIDE

public static final TickLayout OUTSIDE
Draw ticks outside the drawing area


INSIDE

public static final TickLayout INSIDE
Draw ticks inside the drawing area


INVISIBLE

public static final TickLayout INVISIBLE
Do not draw ticks

Method Detail

values

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

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

valueOf

public static TickLayout 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