Enum 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 Detail

      • 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
      • 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 name
        java.lang.NullPointerException - if the argument is null