semi合集-English.pdf - 第3118页

SEMI E125-0305 © SEMI 2003, 2005 26 10.5.3.2.4.2 Field Association Definition Table Table 42 Field Asso ciation Definition Association Role Name Definition Comments typeInformation Describes the data type of th is fiel d…

100%1 / 7923
SEMI E125-0305 © SEMI 2003, 2005 25
10.5.3.2.2 StructureType Attribute Definition Table
Table 39 StructureType Attribute Definition
Attribute Name Definition Form
description A human-readable description of the meaning or
purpose of the structure.
Text.
10.5.3.2.3 StructureType Association Definition Table
Table 40 StructureType Association Definition
Association Role Name Definition Comments
fields The fields that comprise this data structure. Ordered list of one or more structured data
elements of type Field.
10.5.3.2.4 Field — Represents a named field that has one and only one type, primitive or composite. This class is
used for describing fields within structures. See Section 10.5.1.2 for a description of the ParameterTypeDefinition
class.
10.5.3.2.4.1 Field Attribute Definition Table
Table 41 Field Attribute Definition
Attribute Name Definition Required Form
name The name of the field. Y Text.
description A description of the meaning or purpose of the field. Y Text.
canBeNull Whether or not the field’s value may be omitted. Boolean. True if the field’s value is
not always provided for all values of
the structure.
name
description
canBeNull
Field
des cription
StructureT ype
fields
11..*
ParameterType
1
typeInformation
1
ParameterTypeDefinition
0..*
typeInformation
1
{XOR}
Figure 15
Describing a Structure
SEMI E125-0305 © SEMI 2003, 2005 26
10.5.3.2.4.2 Field Association Definition Table
Table 42 Field Association Definition
Association Role Name Definition Comments
typeInformation Describes the data type of this field. Structured data, must be one and only one of the
following: any type derived from
ParameterType, or a ParameterTypeDefinition
(can be a recursive reference from within the
same ParameterTypeDefinition).
10.5.3.3 Describing Enumerations
10.5.3.3.1 Enumerations are single-valued types whose possible values are restricted to one of a set of pre-defined
values. Figure 16 shows how to describe the valid settings for an enumeration as an ordered collection of integer or
string values. For both integer and string enumerations, each value in the enumeration represents a legal value for
the type being described.
description
Enu merationTyp e
des cription
value
EnumeratedInteger
des cription
value
En umeratedStrin g
values 1
1..*
values1
1..*
{XOR}
ParameterT ype
Figure 16
Describing an Enumeration
10.5.3.3.2 EnumerationType — Represents an enumeration. EnumerationType may consist of either a set of
integers, described by the EnumeratedInteger class, or a set of strings, described by the EnumeratedString class.
10.5.3.3.3 EnumerationType Attribute Definition Table
Table 43 EnumerationType Attribute Definition
Attribute Name Definition Form
description A description of the meaning or purpose of the
enumeration as a whole.
Text.
10.5.3.3.4 EnumerationType Association Definition Table
Table 44 EnumerationType Association Definition
Association Role Name Definition Comments
values The set of values that comprise this enumeration. One of the following:
ordered list of one or more elements of type
EnumeratedInteger
ordered list of one or more elements of type
EnumeratedString
SEMI E125-0305 © SEMI 2003, 2005 27
10.5.3.3.5 EnumeratedInteger — Represents a legal value for an integer enumeration.
10.5.3.3.6 EnumeratedInteger Attribute Definition Table
Table 45 EnumeratedInteger Attribute Definition
Attribute Name Definition Required Form
value A legal value for the enumeration. Y Integer, must be unique across all
values for this enumeration.
description A description of the meaning or purpose of this
enumeration value.
Y Text.
10.5.3.3.7 EnumeratedString — Represents a legal value for a string enumeration.
10.5.3.3.8 EnumeratedString Attribute Definition Table
Table 46 EnumeratedString Attribute Definition
Attribute Name Definition Required Form
value A legal value for the enumeration. Y Text, must be unique across all values
for this enumeration.
description A description of the meaning or purpose of this
enumeration value.
Y Text.
10.5.4 SEMI Standard Type Mapping
10.5.4.1 The following table describes how to map SEMI type terminology to the various primitive and composite
types defined in this document. This convention shall be followed when describing types that represent types
defined in a SEMI standard that is described by metadata.
Table 47 SEMI Type Mapping
SEMI Type Name Type Description to use Comments
integer, positive integer,
negative integer, non-
negative integer, non-
positive integer
IntegerType
float, floating point, real RealType
binary, bit string, byte BinaryType
boolean BooleanType
text StringType If a limitation on the number of characters is specified, the maxCharacters
attribute of the StringType class shall be set equal to the number of
characters that is supported by the supplier.
enumerated EnumeratedInteger Each enumeration shall start at value 0, and is sequenced in increments of 1
according to the order in which the enumerated values are listed in the
corresponding standard. The description field for each enumerated value
shall be equal to the text name provided for the enumerated value in the
corresponding standard.
structure StructureType Each field within the structure shall be named exactly as written in the
corresponding standard. The type of each field shall be mapped using the
conventions described in this table.
list ArrayType Lists of integers, floats, binaries, enumerateds, or structures are described as
arrays of the corresponding primitives or composite types.