Enum AbstractMetricDescriptor.Relation.Kind
- java.lang.Object
-
- java.lang.Enum<AbstractMetricDescriptor.Relation.Kind>
-
- org.somda.sdc.biceps.model.participant.AbstractMetricDescriptor.Relation.Kind
-
- All Implemented Interfaces:
Serializable,Comparable<AbstractMetricDescriptor.Relation.Kind>
- Enclosing class:
- AbstractMetricDescriptor.Relation
public static enum AbstractMetricDescriptor.Relation.Kind extends Enum<AbstractMetricDescriptor.Relation.Kind>
Java class for null.
The following schema fragment specifies the expected content contained within this class.
<simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="Rcm"/> <enumeration value="PS"/> <enumeration value="SST"/> <enumeration value="ECE"/> <enumeration value="DCE"/> <enumeration value="Oth"/> </restriction> </simpleType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AbstractMetricDescriptor.Relation.KindfromValue(String v)Stringvalue()static AbstractMetricDescriptor.Relation.KindvalueOf(String name)Returns the enum constant of this type with the specified name.static AbstractMetricDescriptor.Relation.Kind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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.
-
PS
public static final AbstractMetricDescriptor.Relation.Kind PS
PS = Pre-setting. This METRIC is a pre-setting 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.
-
OTH
public static final AbstractMetricDescriptor.Relation.Kind OTH
Oth = Other. Relation is specified by other means, e.g., ./pm:Relation/pm:Code or extension element.
-
-
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 nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static AbstractMetricDescriptor.Relation.Kind fromValue(String v)
-
-