Enum Class IInstantiationBehavior.Exactness
java.lang.Object
java.lang.Enum<IInstantiationBehavior.Exactness>
com.ibm.wala.dalvik.ipa.callgraph.androidModel.parameters.IInstantiationBehavior.Exactness
- All Implemented Interfaces:
Serializable
,Comparable<IInstantiationBehavior.Exactness>
,Constable
- Enclosing class:
IInstantiationBehavior
Information on how the IInstanciationBehavior made its decision for
IInstantiationBehavior.InstanceBehavior
- Author:
- Tobias Blaschke <code@tobiasblaschke.de>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionNo mapping was found, the default-value was used as a fall-back.The decision was made based on a exact known mapping from the given data.No direct mapping was found for the type, the one returned is from a superclass.The value is based on the package of the variable. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static IInstantiationBehavior.Exactness[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EXACT
The decision was made based on a exact known mapping from the given data. -
INHERITED
No direct mapping was found for the type, the one returned is from a superclass. -
PACKAGE
The value is based on the package of the variable. -
PREFIX
-
DEFAULT
No mapping was found, the default-value was used as a fall-back.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-