ComputationBaseList

Fully qualified enumeration name: DDICDIModels::DDICDILibrary::DataTypes::Enumerations::ComputationBaseList

Definition

Defines the cases included in determining the statistic.

Diagram

Enumeration literals

Name

Description

MissingOnly

Only missing (invalid) cases included in the calculation.

Total

All cases, both valid and missing (invalid).

ValidOnly

Only valid values, missing (invalid) are not included in the calculation.

Usage

Type

Package

Classifier

Attribute

DataType

StructuredDataTypes

Statistic

computationBase

Syntax representations / encodings

All syntax representations except the Canonical XMI are provided as reference points for specific implementations, or for use as defaults if sufficient in the form presented.

Fragment for the enumeration ComputationBaseList

 1<packagedElement xmlns:StandardProfile="http://www.eclipse.org/uml2/5.0.0/UML/Profile/Standard"
 2                 xmlns:uml="http://www.eclipse.org/uml2/5.0.0/UML"
 3                 xmlns:xmi="http://www.omg.org/spec/XMI/20131001"
 4                 xmi:id="DDICDIModels-DDICDILibrary-DataTypes-Enumerations-ComputationBaseList"
 5                 xmi:uuid="http://ddialliance.org/Specification/DDI-CDI/1.0/XMI/#ComputationBaseList"
 6                 xmi:type="uml:Enumeration">
 7   <ownedComment xmi:id="DDICDIModels-DDICDILibrary-DataTypes-Enumerations-ComputationBaseList-ownedComment"
 8                 xmi:uuid="http://ddialliance.org/Specification/DDI-CDI/1.0/XMI/#ComputationBaseList-ownedComment"
 9                 xmi:type="uml:Comment">
10      <annotatedElement xmi:idref="DDICDIModels-DDICDILibrary-DataTypes-Enumerations-ComputationBaseList"/>
11      <body>Definition
12============
13Defines the cases included in determining the statistic.</body>
14   </ownedComment>
15   <name>ComputationBaseList</name>
16   <ownedLiteral xmi:id="DDICDIModels-DDICDILibrary-DataTypes-Enumerations-ComputationBaseList-MissingOnly"
17                 xmi:uuid="http://ddialliance.org/Specification/DDI-CDI/1.0/XMI/#MissingOnly"
18                 xmi:type="uml:EnumerationLiteral">
19      <ownedComment xmi:id="DDICDIModels-DDICDILibrary-DataTypes-Enumerations-ComputationBaseList-MissingOnly-ownedComment"
20                    xmi:uuid="http://ddialliance.org/Specification/DDI-CDI/1.0/XMI/#MissingOnly-ownedComment"
21                    xmi:type="uml:Comment">
22         <annotatedElement xmi:idref="DDICDIModels-DDICDILibrary-DataTypes-Enumerations-ComputationBaseList-MissingOnly"/>
23         <body>Only missing (invalid) cases included in the calculation.</body>
24      </ownedComment>
25      <name>MissingOnly</name>
26   </ownedLiteral>
27   <ownedLiteral xmi:id="DDICDIModels-DDICDILibrary-DataTypes-Enumerations-ComputationBaseList-Total"
28                 xmi:uuid="http://ddialliance.org/Specification/DDI-CDI/1.0/XMI/#Total"
29                 xmi:type="uml:EnumerationLiteral">
30      <ownedComment xmi:id="DDICDIModels-DDICDILibrary-DataTypes-Enumerations-ComputationBaseList-Total-ownedComment"
31                    xmi:uuid="http://ddialliance.org/Specification/DDI-CDI/1.0/XMI/#Total-ownedComment"
32                    xmi:type="uml:Comment">
33         <annotatedElement xmi:idref="DDICDIModels-DDICDILibrary-DataTypes-Enumerations-ComputationBaseList-Total"/>
34         <body>All cases, both valid and missing (invalid).</body>
35      </ownedComment>
36      <name>Total</name>
37   </ownedLiteral>
38   <ownedLiteral xmi:id="DDICDIModels-DDICDILibrary-DataTypes-Enumerations-ComputationBaseList-ValidOnly"
39                 xmi:uuid="http://ddialliance.org/Specification/DDI-CDI/1.0/XMI/#ValidOnly"
40                 xmi:type="uml:EnumerationLiteral">
41      <ownedComment xmi:id="DDICDIModels-DDICDILibrary-DataTypes-Enumerations-ComputationBaseList-ValidOnly-ownedComment"
42                    xmi:uuid="http://ddialliance.org/Specification/DDI-CDI/1.0/XMI/#ValidOnly-ownedComment"
43                    xmi:type="uml:Comment">
44         <annotatedElement xmi:idref="DDICDIModels-DDICDILibrary-DataTypes-Enumerations-ComputationBaseList-ValidOnly"/>
45         <body>Only valid values, missing (invalid) are not included in the calculation.</body>
46      </ownedComment>
47      <name>ValidOnly</name>
48   </ownedLiteral>
49</packagedElement>

Fragment for the enumeration ComputationBaseList

 1<xs:simpleType name="ComputationBaseListXsdType"
 2               xml:id="ComputationBaseListXsdType">
 3  <!-- based on the UML enumeration DDICDIModels::DDICDILibrary::DataTypes::Enumerations::ComputationBaseList -->
 4  <xs:annotation>
 5    <xs:documentation>Definition
 6          ============
 7          Defines the cases included in determining the statistic.</xs:documentation>
 8  </xs:annotation>
 9  <xs:restriction base="xs:NMTOKEN">
10    <xs:enumeration value="MissingOnly">
11      <xs:annotation>
12        <xs:documentation>Only missing (invalid) cases included in the calculation.</xs:documentation>
13      </xs:annotation>
14    </xs:enumeration>
15    <xs:enumeration value="Total">
16      <xs:annotation>
17        <xs:documentation>All cases, both valid and missing (invalid).</xs:documentation>
18      </xs:annotation>
19    </xs:enumeration>
20    <xs:enumeration value="ValidOnly">
21      <xs:annotation>
22        <xs:documentation>Only valid values, missing (invalid) are not included in the calculation.</xs:documentation>
23      </xs:annotation>
24    </xs:enumeration>
25  </xs:restriction>
26</xs:simpleType>

Fragment for the enumeration ComputationBaseList (main ontology, entire ontology as zip)

 1# enumeration ComputationBaseList
 2# based on the UML enumeration DDICDIModels::DDICDILibrary::DataTypes::Enumerations::ComputationBaseList
 3cdi:ComputationBaseList
 4  a rdfs:Class, owl:Class, ucmis:Enumeration;
 5  rdfs:label "ComputationBaseList";
 6  rdfs:comment "Definition\n============\nDefines the cases included in determining the statistic."@en;
 7  
 8.
 9
10cdi:MissingOnly
11  a cdi:ComputationBaseList;
12  rdfs:label "MissingOnly";
13  rdfs:comment "Only missing (invalid) cases included in the calculation."@en;
14.
15
16cdi:Total
17  a cdi:ComputationBaseList;
18  rdfs:label "Total";
19  rdfs:comment "All cases, both valid and missing (invalid)."@en;
20.
21
22cdi:ValidOnly
23  a cdi:ComputationBaseList;
24  rdfs:label "ValidOnly";
25  rdfs:comment "Only valid values, missing (invalid) are not included in the calculation."@en;
26.