2004-05-06 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.XML / System.Xml.Schema / XmlSchemaBuiltInType.cs
1 //
2 // XmlSchemaBuiltInType.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
6 //
7 #if NET_2_0
8
9 namespace System.Xml.Schema
10 {
11         public enum XmlSchemaBuiltInType
12         {
13                 None,
14                 AnyType,
15                 AnySimpleType,
16                 String,
17                 Bool,
18                 Float,
19                 Double,
20                 Decimal,
21                 Duration,
22                 AnyUri,
23                 Base64Binary,
24                 Byte,
25                 Date,
26                 DateTime,
27                 GDay,
28                 GMonth,
29                 GMonthDay,
30                 GYear,
31                 GYearMonth,
32                 HexBinary,
33                 Entities,
34                 Entity,
35                 Id,
36                 Idref,
37                 Idrefs,
38                 Int,
39                 Integer,
40                 Language,
41                 Long,
42                 Name,
43                 NCName,
44                 NegativeInteger,
45                 NmToken,
46                 NmTokens,
47                 NonNegativeInteger,
48                 NonPositiveInteger,
49                 Normalizedstring,
50                 Notation,
51                 PositiveInteger,
52                 QName,
53                 Short,
54                 Time,
55                 Token,
56                 UnsignedByte,
57                 UnsignedInt,
58                 UnsignedLong,
59                 UnsignedShort
60         }
61 }
62 #endif