edu.uci.ics.jung.visualization.renderers
Enum Renderer.VertexLabel.Position

java.lang.Object
  extended by java.lang.Enum<Renderer.VertexLabel.Position>
      extended by edu.uci.ics.jung.visualization.renderers.Renderer.VertexLabel.Position
All Implemented Interfaces:
Serializable, Comparable<Renderer.VertexLabel.Position>
Enclosing interface:
Renderer.VertexLabel<V,E>

public static enum Renderer.VertexLabel.Position
extends Enum<Renderer.VertexLabel.Position>


Enum Constant Summary
AUTO
           
CNTR
           
E
           
N
           
NE
           
NW
           
S
           
SE
           
SW
           
W
           
 
Method Summary
static Renderer.VertexLabel.Position valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Renderer.VertexLabel.Position[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

N

public static final Renderer.VertexLabel.Position N

NE

public static final Renderer.VertexLabel.Position NE

E

public static final Renderer.VertexLabel.Position E

SE

public static final Renderer.VertexLabel.Position SE

S

public static final Renderer.VertexLabel.Position S

SW

public static final Renderer.VertexLabel.Position SW

W

public static final Renderer.VertexLabel.Position W

NW

public static final Renderer.VertexLabel.Position NW

CNTR

public static final Renderer.VertexLabel.Position CNTR

AUTO

public static final Renderer.VertexLabel.Position AUTO
Method Detail

values

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

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

valueOf

public static Renderer.VertexLabel.Position 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


Copyright © 2009. All Rights Reserved.