1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #ifndef __com_sun_star_ucb_RuleOperator_idl__
20 #define __com_sun_star_ucb_RuleOperator_idl__
24 module com
{ module sun
{ module star
{ module ucb
{
26 /** These are the possible values for RuleTerm::RuleOperator.
31 published constants RuleOperator
33 /** "Contains" - Object contains RuleTerm::Operand.
35 const short CONTAINS
= 1;
37 /** "ContainsNot" - Object does not contain
40 const short CONTAINSNOT
= 2;
42 /** "GreaterEqual" - Object is greater than or equal to
45 const short GREATEREQUAL
= 3;
47 /** "LessEqual" - Object is less than or equal to
50 const short LESSEQUAL
= 4;
52 /** "Equal" - Object is equal to RuleTerm::Operand.
54 const short EQUAL
= 5;
56 /** "NotEqual" - Object is not equal to RuleTerm::Operand.
58 const short NOTEQUAL
= 6;
60 /** "True" - Object has the value `TRUE`.
62 const short VALUE_TRUE
= 7;
64 /** "False" - Object has the value `FALSE`.
66 const short VALUE_FALSE
= 8;
75 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */