/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * 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 . */ #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 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */