Package com.ibm.wala.ipa.slicer
Enum PDG.Dependency
- java.lang.Object
-
- java.lang.Enum<PDG.Dependency>
-
- com.ibm.wala.ipa.slicer.PDG.Dependency
-
- All Implemented Interfaces:
Serializable
,Comparable<PDG.Dependency>
- Enclosing class:
- PDG<T extends InstanceKey>
public static enum PDG.Dependency extends Enum<PDG.Dependency>
BEGIN Custom change: control deps
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTROL_DEP
DATA_AND_CONTROL_DEP
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PDG.Dependency
valueOf(String name)
Returns the enum constant of this type with the specified name.static PDG.Dependency[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONTROL_DEP
public static final PDG.Dependency CONTROL_DEP
-
DATA_AND_CONTROL_DEP
public static final PDG.Dependency DATA_AND_CONTROL_DEP
-
-
Method Detail
-
values
public static PDG.Dependency[] 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 (PDG.Dependency c : PDG.Dependency.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PDG.Dependency 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
-
-