AbstractTokenList is a simple type superclass for a compact character data representations that consist of space-separated lists of tokens. Examples of this are continuous character data (where the compact representation is a list of space-separated floating point numbers) and standard categorical data (which is represented as integers, which can be > 9, and hence need to be space-separated). |
Simple Types | ContinuousSeq, StandardSeq |
<xs:simpleType name="AbstractTokenList"> <xs:annotation> <xs:documentation>AbstractTokenList is a simple type superclass for a compact character data representations that consist of space-separated lists of tokens. Examples of this are continuous character data (where the compact representation is a list of space-separated floating point numbers) and standard categorical data (which is represented as integers, which can be > 9, and hence need to be space-separated).</xs:documentation> </xs:annotation> <xs:list itemType="xs:string"/> </xs:simpleType> |