Package com.ibm.wala.cast.js.util
Enum JSCallGraphBuilderUtil.CGBuilderType
- java.lang.Object
-
- java.lang.Enum<JSCallGraphBuilderUtil.CGBuilderType>
-
- com.ibm.wala.cast.js.util.JSCallGraphBuilderUtil.CGBuilderType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<JSCallGraphBuilderUtil.CGBuilderType>
- Enclosing class:
- JSCallGraphBuilderUtil
public static enum JSCallGraphBuilderUtil.CGBuilderType extends java.lang.Enum<JSCallGraphBuilderUtil.CGBuilderType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ONE_CFAZERO_ONE_CFAZERO_ONE_CFA_NO_CALL_APPLYZERO_ONE_CFA_WITHOUT_CORRELATION_TRACKING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanextractCorrelatedPairs()booleanhandleCallApply()booleanuseOneCFA()static JSCallGraphBuilderUtil.CGBuilderTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static JSCallGraphBuilderUtil.CGBuilderType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ZERO_ONE_CFA
public static final JSCallGraphBuilderUtil.CGBuilderType ZERO_ONE_CFA
-
ZERO_ONE_CFA_WITHOUT_CORRELATION_TRACKING
public static final JSCallGraphBuilderUtil.CGBuilderType ZERO_ONE_CFA_WITHOUT_CORRELATION_TRACKING
-
ZERO_ONE_CFA_NO_CALL_APPLY
public static final JSCallGraphBuilderUtil.CGBuilderType ZERO_ONE_CFA_NO_CALL_APPLY
-
ONE_CFA
public static final JSCallGraphBuilderUtil.CGBuilderType ONE_CFA
-
-
Method Detail
-
values
public static JSCallGraphBuilderUtil.CGBuilderType[] 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 (JSCallGraphBuilderUtil.CGBuilderType c : JSCallGraphBuilderUtil.CGBuilderType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JSCallGraphBuilderUtil.CGBuilderType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
useOneCFA
public boolean useOneCFA()
-
handleCallApply
public boolean handleCallApply()
-
extractCorrelatedPairs
public boolean extractCorrelatedPairs()
-
-