LibreOffice
LibreOffice 24.2 SDK API Reference
FilterOperator2.idl
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  * Licensed to the Apache Software Foundation (ASF) under one or more
12  * contributor license agreements. See the NOTICE file distributed
13  * with this work for additional information regarding copyright
14  * ownership. The ASF licenses this file to you under the Apache
15  * License, Version 2.0 (the "License"); you may not use this file
16  * except in compliance with the License. You may obtain a copy of
17  * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
19 
20 
21 module com { module sun { module star { module sheet {
22 
23 
31 published constants FilterOperator2
32 {
33 
34 
37  const long EMPTY = 0;
38 
39 
42  const long NOT_EMPTY = 1;
43 
44 
47  const long EQUAL = 2;
48 
49 
52  const long NOT_EQUAL = 3;
53 
54 
57  const long GREATER = 4;
58 
59 
62  const long GREATER_EQUAL = 5;
63 
64 
67  const long LESS = 6;
68 
69 
72  const long LESS_EQUAL = 7;
73 
74 
77  const long TOP_VALUES = 8;
78 
79 
82  const long TOP_PERCENT = 9;
83 
84 
87  const long BOTTOM_VALUES = 10;
88 
89 
92  const long BOTTOM_PERCENT = 11;
93 
94 
97  const long CONTAINS = 12;
98 
99 
102  const long DOES_NOT_CONTAIN = 13;
103 
104 
107  const long BEGINS_WITH = 14;
108 
109 
112  const long DOES_NOT_BEGIN_WITH = 15;
113 
116  const long ENDS_WITH = 16;
117 
118 
121  const long DOES_NOT_END_WITH = 17;
122 
123 };
124 
125 
126 }; }; }; };
127 
128 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
const long BEGINS_WITH
selects begins-with entries.
Definition: FilterOperator2.idl:107
const long CONTAINS
selects contains entries.
Definition: FilterOperator2.idl:97
const long NOT_EMPTY
selects non-empty entries.
Definition: FilterOperator2.idl:42
Definition: Ambiguous.idl:20
const long EMPTY
selects empty entries.
Definition: FilterOperator2.idl:37
const long GREATER
value has to be greater than the specified value.
Definition: FilterOperator2.idl:57
const long DOES_NOT_BEGIN_WITH
selects does-not-begin-with entries.
Definition: FilterOperator2.idl:112
const long ENDS_WITH
selects ends-with entries.
Definition: FilterOperator2.idl:116
const long DOES_NOT_END_WITH
selects does-not-end-with entries.
Definition: FilterOperator2.idl:121
const long GREATER_EQUAL
value has to be greater than or equal to the specified value.
Definition: FilterOperator2.idl:62
const long BOTTOM_PERCENT
selects a specified percentage of entries with the lowest values.
Definition: FilterOperator2.idl:92
const long DOES_NOT_CONTAIN
selects does-not-contain entries.
Definition: FilterOperator2.idl:102
const long EQUAL
value has to be equal to the specified value.
Definition: FilterOperator2.idl:47
const long BOTTOM_VALUES
selects a specified number of entries with the lowest values.
Definition: FilterOperator2.idl:87
const long TOP_VALUES
selects a specified number of entries with the greatest values.
Definition: FilterOperator2.idl:77
const long LESS
value has to be less than the specified value.
Definition: FilterOperator2.idl:67
const long TOP_PERCENT
selects a specified percentage of entries with the greatest values.
Definition: FilterOperator2.idl:82
const long NOT_EQUAL
value must not be equal to the specified value.
Definition: FilterOperator2.idl:52
const long LESS_EQUAL
value has to be less than or equal to the specified value.
Definition: FilterOperator2.idl:72