com.googlecode.charts4j
Enum LegendPosition

java.lang.Object
  extended by java.lang.Enum<LegendPosition>
      extended by com.googlecode.charts4j.LegendPosition
All Implemented Interfaces:
Serializable, Comparable<LegendPosition>

public enum LegendPosition
extends Enum<LegendPosition>

Enumeration for specifying legend position.

Author:
Julien Chastang (julien.c.chastang at gmail dot com)

Enum Constant Summary
BOTTOM
          Legend position at bottom.
LEFT
          Legend position at left.
RIGHT
          Legend position at right.
TOP
          Legend position at top.
 
Method Summary
 String toString()
          
static LegendPosition valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LegendPosition[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TOP

public static final LegendPosition TOP
Legend position at top.


BOTTOM

public static final LegendPosition BOTTOM
Legend position at bottom.


RIGHT

public static final LegendPosition RIGHT
Legend position at right.


LEFT

public static final LegendPosition LEFT
Legend position at left.

Method Detail

values

public static final LegendPosition[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(LegendPosition c : LegendPosition.values())
        System.out.println(c);

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

valueOf

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

toString

public String toString()

Overrides:
toString in class Enum<LegendPosition>