|
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||
java.lang.Objectjava.lang.Enum<VariableFilter.Kind>
dk.brics.xact.analysis.flowgraph.VariableFilter.Kind
public static enum VariableFilter.Kind
Variable filter kinds.
| Enum Constant Summary | |
|---|---|
CALL
Flow from method invocation to method entry node. |
|
ENTRY
Flow from method entry node to first ordinary node of the method body. |
|
NORMAL
Normal intra-procedural flow. |
|
RETURN
Flow from method exit node to successor of method invocation node. |
|
| Method Summary | |
|---|---|
static VariableFilter.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static VariableFilter.Kind[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final VariableFilter.Kind CALL
public static final VariableFilter.Kind ENTRY
public static final VariableFilter.Kind NORMAL
public static final VariableFilter.Kind RETURN
| Method Detail |
|---|
public static VariableFilter.Kind valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic static VariableFilter.Kind[] values()
for (VariableFilter.Kind c : VariableFilter.Kind.values()) System.out.println(c);
|
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||