xref: /AOO41X/main/udkapi/com/sun/star/registry/RegistryValueType.idl (revision 408a4873fc8bcc602c90ea4598886bb71abf0675)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23#ifndef __com_sun_star_registry_RegistryValueType_idl__
24#define __com_sun_star_registry_RegistryValueType_idl__
25
26
27//=============================================================================
28
29 module com {  module sun {  module star {  module registry {
30
31//=============================================================================
32
33// DocMerge from xml: enum com::sun::star::registry::RegistryValueType
34/** represents all possible types of a key value.
35
36    <p>An ASCII value and a string value will both be handled with type
37    string. But interns will be handled differently. Normally the idl
38    string represents a unicode string. </p>
39 */
40published enum RegistryValueType
41{
42    //-------------------------------------------------------------------------
43    // DOCUMENTATION OMITTED FOR RegistryValueType::    NOT_DEFINED,
44
45    // DocMerge from xml: value com::sun::star::registry::RegistryValueType::NOT_DEFINED
46    /** the type of the key is not defined.
47     */
48    NOT_DEFINED,
49
50    //-------------------------------------------------------------------------
51    // DOCUMENTATION OMITTED FOR RegistryValueType::    LONG,
52
53    // DocMerge from xml: value com::sun::star::registry::RegistryValueType::LONG
54    /** the type of the key is long.
55     */
56    LONG,
57
58    //-------------------------------------------------------------------------
59    // DOCUMENTATION OMITTED FOR RegistryValueType::    ASCII,
60
61    // DocMerge from xml: value com::sun::star::registry::RegistryValueType::ASCII
62    /** the type of the key is ASCII.
63     */
64    ASCII,
65
66    //-------------------------------------------------------------------------
67    // DOCUMENTATION OMITTED FOR RegistryValueType::    STRING,
68
69    // DocMerge from xml: value com::sun::star::registry::RegistryValueType::STRING
70    /** the type of the key is a string.
71     */
72    STRING,
73
74    //-------------------------------------------------------------------------
75    // DOCUMENTATION OMITTED FOR RegistryValueType::    BINARY,
76
77    // DocMerge from xml: value com::sun::star::registry::RegistryValueType::BINARY
78    /** the type of the key is binary.
79     */
80    BINARY,
81
82    //-------------------------------------------------------------------------
83    // DOCUMENTATION OMITTED FOR RegistryValueType::    LONGLIST,
84
85    // DocMerge from xml: value com::sun::star::registry::RegistryValueType::LONGLIST
86    /** the type of the key is LONGLIST.
87     */
88    LONGLIST,
89
90    //-------------------------------------------------------------------------
91    // DOCUMENTATION OMITTED FOR RegistryValueType::    ASCIILIST,
92
93    // DocMerge from xml: value com::sun::star::registry::RegistryValueType::ASCIILIST
94    /** the type of the key is a ASCIILIST.
95     */
96    ASCIILIST,
97
98    //-------------------------------------------------------------------------
99    // DOCUMENTATION OMITTED FOR RegistryValueType::    STRINGLIST
100
101    // DocMerge from xml: value com::sun::star::registry::RegistryValueType::STRINGLIST
102    /** the type of the key is a STRINGLIST.
103     */
104    STRINGLIST
105
106};
107
108//=============================================================================
109
110}; }; }; };
111
112/*=============================================================================
113
114=============================================================================*/
115#endif
116