Enum AbstractMetricDescriptor.Relation.Kind

    • Enum Constant Detail

      • RCM

        public static final AbstractMetricDescriptor.Relation.Kind RCM
        Rcm = Recommendation. The METRIC is a recommendation for the containment tree entries defined in ./pm:Relation/@Entries.
      • SST

        public static final AbstractMetricDescriptor.Relation.Kind SST
        SST = Set of summary statistics. The METRIC is part of a set of summary statistics for a sample where other METRICs that belong to the summary statistics are defined in ./pm:Relation/@Entries.
      • ECE

        public static final AbstractMetricDescriptor.Relation.Kind ECE
        ECE = Effect on containment tree entries. When changed, the METRIC has an effect on the containment tree entries defined in ./pm:Relation/@Entries. If Kind is "ECE", ./pm:Relation/pm:Code SHOULD be set to classify the effect.
      • DCE

        public static final AbstractMetricDescriptor.Relation.Kind DCE
        DCE = Derived from containment tree entries. The METRIC is derived from the containment tree entries defined in ./pm:Relation/@Entries. If Kind is "DCE", ./pm:Relation/pm:Code MAY be set to classify the form of derivation.
    • Method Detail

      • values

        public static AbstractMetricDescriptor.Relation.Kind[] 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 (AbstractMetricDescriptor.Relation.Kind c : AbstractMetricDescriptor.Relation.Kind.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AbstractMetricDescriptor.Relation.Kind valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • value

        public String value()