Enum VerticalAlignment.VDirection
- java.lang.Object
-
- java.lang.Enum<VerticalAlignment.VDirection>
-
- org.jungrapht.visualization.layout.algorithms.eiglsperger.VerticalAlignment.VDirection
-
- All Implemented Interfaces:
Serializable
,Comparable<VerticalAlignment.VDirection>
- Enclosing class:
- VerticalAlignment<V,E>
public static enum VerticalAlignment.VDirection extends Enum<VerticalAlignment.VDirection>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static VerticalAlignment.VDirection
valueOf(String name)
Returns the enum constant of this type with the specified name.static VerticalAlignment.VDirection[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TtoB
public static final VerticalAlignment.VDirection TtoB
-
BtoT
public static final VerticalAlignment.VDirection BtoT
-
-
Method Detail
-
values
public static VerticalAlignment.VDirection[] 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 (VerticalAlignment.VDirection c : VerticalAlignment.VDirection.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VerticalAlignment.VDirection 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
-
-