Package com.ibm.wala.cast.js.util
Enum FieldBasedCGUtil.BuilderType
- java.lang.Object
-
- java.lang.Enum<FieldBasedCGUtil.BuilderType>
-
- com.ibm.wala.cast.js.util.FieldBasedCGUtil.BuilderType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FieldBasedCGUtil.BuilderType>
- Enclosing class:
- FieldBasedCGUtil
public static enum FieldBasedCGUtil.BuilderType extends java.lang.Enum<FieldBasedCGUtil.BuilderType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OPTIMISTICOPTIMISTIC_WORKLISTPESSIMISTIC
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract FieldBasedCallGraphBuilderfieldBasedCallGraphBuilderFactory(com.ibm.wala.ipa.cha.IClassHierarchy cha, JSAnalysisOptions makeOptions, com.ibm.wala.ipa.callgraph.IAnalysisCacheView cache, boolean supportFullPointerAnalysis)static FieldBasedCGUtil.BuilderTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FieldBasedCGUtil.BuilderType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PESSIMISTIC
public static final FieldBasedCGUtil.BuilderType PESSIMISTIC
-
OPTIMISTIC
public static final FieldBasedCGUtil.BuilderType OPTIMISTIC
-
OPTIMISTIC_WORKLIST
public static final FieldBasedCGUtil.BuilderType OPTIMISTIC_WORKLIST
-
-
Method Detail
-
values
public static FieldBasedCGUtil.BuilderType[] 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 (FieldBasedCGUtil.BuilderType c : FieldBasedCGUtil.BuilderType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FieldBasedCGUtil.BuilderType 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
-
fieldBasedCallGraphBuilderFactory
protected abstract FieldBasedCallGraphBuilder fieldBasedCallGraphBuilderFactory(com.ibm.wala.ipa.cha.IClassHierarchy cha, JSAnalysisOptions makeOptions, com.ibm.wala.ipa.callgraph.IAnalysisCacheView cache, boolean supportFullPointerAnalysis)
-
-