1 16 package javax.xml.rpc.encoding; 17 18 import javax.xml.namespace.QName ; 19 20 25 public class XMLType { 26 public XMLType() {} 29 30 31 public static final QName XSD_STRING = 32 new QName ("http://www.w3.org/2001/XMLSchema", "string"); 33 34 35 public static final QName XSD_FLOAT = 36 new QName ("http://www.w3.org/2001/XMLSchema", "float"); 37 38 39 public static final QName XSD_BOOLEAN = 40 new QName ("http://www.w3.org/2001/XMLSchema", "boolean"); 41 42 43 public static final QName XSD_DOUBLE = 44 new QName ("http://www.w3.org/2001/XMLSchema", "double"); 45 46 47 public static final QName XSD_INTEGER = 48 new QName ("http://www.w3.org/2001/XMLSchema", "integer"); 49 50 51 public static final QName XSD_INT = 52 new QName ("http://www.w3.org/2001/XMLSchema", "int"); 53 54 55 public static final QName XSD_LONG = 56 new QName ("http://www.w3.org/2001/XMLSchema", "long"); 57 58 59 public static final QName XSD_SHORT = 60 new QName ("http://www.w3.org/2001/XMLSchema", "short"); 61 62 63 public static final QName XSD_DECIMAL = 64 new QName ("http://www.w3.org/2001/XMLSchema", "decimal"); 65 66 67 public static final QName XSD_BASE64 = 68 new QName ("http://www.w3.org/2001/XMLSchema", "base64Binary"); 69 70 71 public static final QName XSD_HEXBINARY = 72 new QName ("http://www.w3.org/2001/XMLSchema", "hexBinary"); 73 74 75 public static final QName XSD_BYTE = 76 new QName ("http://www.w3.org/2001/XMLSchema", "byte"); 77 78 79 public static final QName XSD_DATETIME = 80 new QName ("http://www.w3.org/2001/XMLSchema", "dateTime"); 81 82 83 public static final QName XSD_QNAME = 84 new QName ("http://www.w3.org/2001/XMLSchema", "QName"); 85 86 87 public static final QName SOAP_STRING = 88 new QName ("http://schemas.xmlsoap.org/soap/encoding/", "string"); 89 90 91 public static final QName SOAP_BOOLEAN = 92 new QName ("http://schemas.xmlsoap.org/soap/encoding/", "boolean"); 93 94 95 public static final QName SOAP_DOUBLE = 96 new QName ("http://schemas.xmlsoap.org/soap/encoding/", "double"); 97 98 99 public static final QName SOAP_BASE64 = 100 new QName ("http://schemas.xmlsoap.org/soap/encoding/", "base64"); 101 102 103 public static final QName SOAP_FLOAT = 104 new QName ("http://schemas.xmlsoap.org/soap/encoding/", "float"); 105 106 107 public static final QName SOAP_INT = 108 new QName ("http://schemas.xmlsoap.org/soap/encoding/", "int"); 109 110 111 public static final QName SOAP_LONG = 112 new QName ("http://schemas.xmlsoap.org/soap/encoding/", "long"); 113 114 115 public static final QName SOAP_SHORT = 116 new QName ("http://schemas.xmlsoap.org/soap/encoding/", "short"); 117 118 119 public static final QName SOAP_BYTE = 120 new QName ("http://schemas.xmlsoap.org/soap/encoding/", "byte"); 121 122 123 public static final QName SOAP_ARRAY = 124 new QName ("http://schemas.xmlsoap.org/soap/encoding/", "Array"); 125 } 126 127 | Popular Tags |