public static enum VerticalDecomposition.DecompVertexType extends java.lang.Enum<VerticalDecomposition.DecompVertexType>
Enum Constant and Description |
---|
LEAF
Indicates a leaf vertex.
|
POINT
Indicates a point vertex.
|
SEGMENT
Indicates a line segment vertex.
|
Modifier and Type | Method and Description |
---|---|
static VerticalDecomposition.DecompVertexType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerticalDecomposition.DecompVertexType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerticalDecomposition.DecompVertexType LEAF
public static final VerticalDecomposition.DecompVertexType POINT
public static final VerticalDecomposition.DecompVertexType SEGMENT
public static VerticalDecomposition.DecompVertexType[] values()
for (VerticalDecomposition.DecompVertexType c : VerticalDecomposition.DecompVertexType.values()) System.out.println(c);
public static VerticalDecomposition.DecompVertexType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null