/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #ifndef __com_sun_star_xsd_DataTypeClass_idl__ #define __com_sun_star_xsd_DataTypeClass_idl__ //============================================================================= module com { module sun { module star { module xsd { //============================================================================= /** These constants specify the class used of an XDataType */ constants DataTypeClass { /** specifies an XSD compliant string type */ const short STRING = 1; /** specifies an XSD compliant boolean type */ const short BOOLEAN = 2; /** specifies an XSD compliant decimal type */ const short DECIMAL = 3; /** specifies an XSD compliant float type */ const short FLOAT = 4; /** specifies an XSD compliant double type */ const short DOUBLE = 5; /** specifies an XSD compliant duration type */ const short DURATION = 6; /** specifies an XSD compliant datetime type */ const short DATETIME = 7; /** specifies an XSD compliant time type */ const short TIME = 8; /** specifies an XSD compliant date type */ const short DATE = 9; /** specifies an XSD compliant gYearMonth type */ const short gYearMonth = 10; /** specifies an XSD compliant gYear type */ const short gYear = 11; /** specifies an XSD compliant gMonthDay type */ const short gMonthDay = 12; /** specifies an XSD compliant gDay type */ const short gDay = 13; /** specifies an XSD compliant gMonth type */ const short gMonth = 14; /** specifies an XSD compliant hexBinary type */ const short hexBinary = 15; /** specifies an XSD compliant base64Binary type */ const short base64Binary = 16; /** specifies an XSD compliant anyURI type */ const short anyURI = 17; /** specifies an XSD compliant QName type */ const short QName = 18; /** specifies an XSD compliant NOTATION type */ const short NOTATION = 19; }; //============================================================================= }; }; }; }; /*============================================================================= =============================================================================*/ #endif