Click or drag to resize

posIntVectorBaseType Complex Type

Vector with semicolon separated positive integer values

Namespace: Empty

Schema: Empty

Base Type
Content Type
ItemFacet ValueDescription
Restriction string
      Facet Pattern(\s+)?\d+(([eE][-+]?)?\d+)?(\s+)?(;(\s+)?\d+(([eE][-+]?)?\d+)?(\s+)?)*
Usages
Attributes
NameTypeRequiredDescription
Attribute aSimple Type string
Attribute bSimple Type string
Attribute cSimple Type string
Attribute deltaSimple Type string
Attribute externalDataDirectorySimple Type string
Attribute externalDataNodePathSimple Type string
Attribute externalFileNameSimple Type string
Attribute mapTypeSimple Type string
Attribute muSimple Type string
Attribute uncertaintyFunctionNameSimple Type uncertaintyFunctionType
Attribute vSimple Type string
Attribute wSimple Type string
Remarks

Any positive integer values separated by semicolons are permitted, e.g.:

Example 1: valid integer vector
<intVectorTest>0;1;2;3;4;5</intVectorTest>
Example 2: valid integer vector with only one entry
<intVectorTest>1</intVectorTest>
Example 3: invalid integer vector due comma separation
<intVectorTest>0,1,2,3,4,5</intVectorTest>
Example 4: invalid integer vector due to invalid integer
<intVectorTest>0.;1.;2.</intVectorTest>
Example 5: invalid integer vector due to negative value
<intVectorTest>-1;0;1</intVectorTest>