public static enum Slicer.ControlDependenceOptions extends java.lang.Enum<Slicer.ControlDependenceOptions>
| Enum Constant and Description |
|---|
FULL
track all control dependencies
|
NO_EXCEPTIONAL_EDGES
don't track control dependence due to exceptional control flow
|
NO_INTERPROC_EDGES
don't track control dependence from caller to callee
|
NO_INTERPROC_NO_EXCEPTION
don't track interprocedural or exceptional control dependence
|
NONE
track no control dependencies.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getName() |
boolean |
isIgnoreExceptions() |
boolean |
isIgnoreInterproc() |
static Slicer.ControlDependenceOptions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Slicer.ControlDependenceOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Slicer.ControlDependenceOptions FULL
public static final Slicer.ControlDependenceOptions NONE
is*() methods in Slicer.ControlDependenceOptionspublic static final Slicer.ControlDependenceOptions NO_EXCEPTIONAL_EDGES
public static final Slicer.ControlDependenceOptions NO_INTERPROC_EDGES
public static final Slicer.ControlDependenceOptions NO_INTERPROC_NO_EXCEPTION
public static Slicer.ControlDependenceOptions[] values()
for (Slicer.ControlDependenceOptions c : Slicer.ControlDependenceOptions.values()) System.out.println(c);
public static Slicer.ControlDependenceOptions 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 nullpublic final java.lang.String getName()
public final boolean isIgnoreExceptions()
public final boolean isIgnoreInterproc()