public static enum PDGNode.Attribute extends java.lang.Enum<PDGNode.Attribute>
Enum Constant and Description |
---|
CONDHEADER |
ENTRY |
LOOPHEADER |
NORMAL |
Modifier and Type | Method and Description |
---|---|
static PDGNode.Attribute |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PDGNode.Attribute[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PDGNode.Attribute NORMAL
public static final PDGNode.Attribute ENTRY
public static final PDGNode.Attribute CONDHEADER
public static final PDGNode.Attribute LOOPHEADER
public static PDGNode.Attribute[] values()
for (PDGNode.Attribute c : PDGNode.Attribute.values()) System.out.println(c);
public static PDGNode.Attribute 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