Package com.ibm.wala.ipa.slicer
Enum Slicer.ControlDependenceOptions
- java.lang.Object
-
- java.lang.Enum<Slicer.ControlDependenceOptions>
-
- com.ibm.wala.ipa.slicer.Slicer.ControlDependenceOptions
-
- All Implemented Interfaces:
Serializable
,Comparable<Slicer.ControlDependenceOptions>
- Enclosing class:
- Slicer
public static enum Slicer.ControlDependenceOptions extends Enum<Slicer.ControlDependenceOptions>
options to control control dependence edges in the sdg
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FULL
NO_EXCEPTIONAL_EDGES
NONE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
static Slicer.ControlDependenceOptions
valueOf(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.
-
-
-
Enum Constant Detail
-
FULL
public static final Slicer.ControlDependenceOptions FULL
-
NONE
public static final Slicer.ControlDependenceOptions NONE
-
NO_EXCEPTIONAL_EDGES
public static final Slicer.ControlDependenceOptions NO_EXCEPTIONAL_EDGES
-
-
Method Detail
-
values
public static Slicer.ControlDependenceOptions[] 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 (Slicer.ControlDependenceOptions c : Slicer.ControlDependenceOptions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Slicer.ControlDependenceOptions 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
-
getName
public final String getName()
-
-