组件:DataType
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
简单类型数据类型
命名空间 |
http://schemas.google.com/dspl/2010 |
注释 |
原子数据值支持的数据类型。 |
图示 |
 |
类型 |
xs:string 的限制 |
分面 |
枚举 |
字符串 |
|
枚举 |
float |
|
枚举 |
integer |
|
枚举 |
布尔值 |
|
枚举 |
日期 |
|
枚举 |
concept |
|
|
使用方数量 |
|
来源 |
<xs:simpleType name="DataType">
<xs:annotation>
<xs:documentation>Data types supported for atomic data values.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="string"/>
<xs:enumeration value="float"/>
<xs:enumeration value="integer"/>
<xs:enumeration value="boolean"/>
<xs:enumeration value="date"/>
<xs:enumeration value="concept"/>
</xs:restriction>
</xs:simpleType>
|
使用
oXygen XML Editor。
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-10-13。
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["没有我需要的信息","missingTheInformationINeed","thumb-down"],["太复杂/步骤太多","tooComplicatedTooManySteps","thumb-down"],["内容需要更新","outOfDate","thumb-down"],["翻译问题","translationIssue","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2024-10-13。"],[[["Simple Type DataType restricts data to atomic values like string, float, integer, boolean, date, and concept."],["It's used to define the data type for attributes, concepts, concept properties, table columns, and value groups within the schema."],["DataType is based on the xs:string type and uses enumerations to specify allowed values."],["The schema documentation provides detailed information about how and where DataType is utilized."]]],["The document defines \"DataType,\" a restriction of `xs:string`, specifying the allowed data types for atomic values. It supports six enumerated types: string, float, integer, boolean, date, and concept. This \"DataType\" is referenced in attributes, concepts, concept properties, table columns, and value groups. The source code demonstrates the XML structure for defining these allowed data types within the \"DataType\" simple type.\n"]]