Enum Renderer.VertexLabel.Position
- java.lang.Object
-
- java.lang.Enum<Renderer.VertexLabel.Position>
-
- org.jungrapht.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>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description 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 are declared.
-
-
-
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 Renderer.VertexLabel.Position[] 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 (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 are 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 nameNullPointerException
- if the argument is null
-
-