Package proguard.analysis
Enum Metrics.MetricType
- java.lang.Object
-
- java.lang.Enum<Metrics.MetricType>
-
- proguard.analysis.Metrics.MetricType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Metrics.MetricType>
- Enclosing class:
- Metrics
public static enum Metrics.MetricType extends java.lang.Enum<Metrics.MetricType>
Constants which are used as metric types.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Metrics.MetricType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Metrics.MetricType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MISSING_CLASS
public static final Metrics.MetricType MISSING_CLASS
-
MISSING_METHODS
public static final Metrics.MetricType MISSING_METHODS
-
UNSUPPORTED_OPCODE
public static final Metrics.MetricType UNSUPPORTED_OPCODE
-
PARTIAL_EVALUATOR_EXCESSIVE_COMPLEXITY
public static final Metrics.MetricType PARTIAL_EVALUATOR_EXCESSIVE_COMPLEXITY
-
PARTIAL_EVALUATOR_VALUE_IMPRECISE
public static final Metrics.MetricType PARTIAL_EVALUATOR_VALUE_IMPRECISE
-
SYMBOLIC_CALL
public static final Metrics.MetricType SYMBOLIC_CALL
-
CONCRETE_CALL
public static final Metrics.MetricType CONCRETE_CALL
-
INCOMPLETE_CALL_SKIPPED
public static final Metrics.MetricType INCOMPLETE_CALL_SKIPPED
-
CALL_TO_ABSTRACT_METHOD
public static final Metrics.MetricType CALL_TO_ABSTRACT_METHOD
-
CALL_GRAPH_RECONSTRUCTION_MAX_DEPTH_REACHED
public static final Metrics.MetricType CALL_GRAPH_RECONSTRUCTION_MAX_DEPTH_REACHED
-
CALL_GRAPH_RECONSTRUCTION_MAX_WIDTH_REACHED
public static final Metrics.MetricType CALL_GRAPH_RECONSTRUCTION_MAX_WIDTH_REACHED
-
CONCRETE_CALL_NO_CODE_ATTRIBUTE
public static final Metrics.MetricType CONCRETE_CALL_NO_CODE_ATTRIBUTE
-
DEX2PRO_INVALID_INNER_CLASS
public static final Metrics.MetricType DEX2PRO_INVALID_INNER_CLASS
-
DEX2PRO_UNPARSEABLE_METHOD_SKIPPED
public static final Metrics.MetricType DEX2PRO_UNPARSEABLE_METHOD_SKIPPED
-
-
Method Detail
-
values
public static Metrics.MetricType[] 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 (Metrics.MetricType c : Metrics.MetricType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Metrics.MetricType 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
-
-