1b3b486c3SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3b3b486c3SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4b3b486c3SAndrew Rist * or more contributor license agreements.  See the NOTICE file
5b3b486c3SAndrew Rist * distributed with this work for additional information
6b3b486c3SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7b3b486c3SAndrew Rist * to you under the Apache License, Version 2.0 (the
8b3b486c3SAndrew Rist * "License"); you may not use this file except in compliance
9b3b486c3SAndrew Rist * with the License.  You may obtain a copy of the License at
10b3b486c3SAndrew Rist *
11b3b486c3SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12b3b486c3SAndrew Rist *
13b3b486c3SAndrew Rist * Unless required by applicable law or agreed to in writing,
14b3b486c3SAndrew Rist * software distributed under the License is distributed on an
15b3b486c3SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16b3b486c3SAndrew Rist * KIND, either express or implied.  See the License for the
17b3b486c3SAndrew Rist * specific language governing permissions and limitations
18b3b486c3SAndrew Rist * under the License.
19b3b486c3SAndrew Rist *
20b3b486c3SAndrew Rist *************************************************************/
21b3b486c3SAndrew Rist
22b3b486c3SAndrew Rist
23cdf0e10cSrcweir
24*b63233d8Sdamjan#ifndef __com_sun_star_lang_SearchAlgorithms_idl__
25*b63233d8Sdamjan#define __com_sun_star_lang_SearchAlgorithms_idl__
26cdf0e10cSrcweir
27cdf0e10cSrcweir
28*b63233d8Sdamjan//=============================================================================
29cdf0e10cSrcweir
30*b63233d8Sdamjanmodule com { module sun { module star { module util {
31cdf0e10cSrcweir
32*b63233d8Sdamjan//=============================================================================
33cdf0e10cSrcweir
34*b63233d8Sdamjanpublished enum SearchAlgorithms
35*b63233d8Sdamjan{
36*b63233d8Sdamjan    /// Literal
37*b63233d8Sdamjan    ABSOLUTE,   // implemented as a kind of Boyer-Moore
38*b63233d8Sdamjan    /// Regular expression
39*b63233d8Sdamjan    REGEXP,
40*b63233d8Sdamjan    /// Weighted Levenshtein Distance
41*b63233d8Sdamjan    APPROXIMATE
42*b63233d8Sdamjan};
43cdf0e10cSrcweir
44*b63233d8Sdamjan//=============================================================================
45*b63233d8Sdamjan}; }; }; };
46*b63233d8Sdamjan
47*b63233d8Sdamjan#endif
48cdf0e10cSrcweir
49