source: FCSSimpleEndpoint/tags/FCSSimpleEndpoint-1.3.0/src/main/java/eu/clarin/sru/server/fcs/parser/RegexFlag.java @ 6957

Last change on this file since 6957 was 6957, checked in by Oliver Schonefeld, 8 years ago
  • tag version 1.3.0
  • Property svn:eol-style set to native
File size: 950 bytes
Line 
1/**
2 * This software is copyright (c) 2013-2016 by
3 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
4 * This is free software. You can redistribute it
5 * and/or modify it under the terms described in
6 * the GNU General Public License v3 of which you
7 * should have received a copy. Otherwise you can download
8 * it from
9 *
10 *   http://www.gnu.org/licenses/gpl-3.0.txt
11 *
12 * @copyright Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
13 *
14 * @license http://www.gnu.org/licenses/gpl-3.0.txt
15 *  GNU General Public License v3
16 */
17package eu.clarin.sru.server.fcs.parser;
18
19
20/**
21 * FCS-QL expression tree regex flags.
22 */
23public enum RegexFlag {
24    /**
25     * case insensitive.
26     */
27    CASE_INSENSITVE,
28    /**
29     * case sensitive.
30     */
31    CASE_SENSITVE,
32    /**
33     * match exactly (= literally).
34     */
35    LITERAL_MATCHING,
36    /**
37     * ignore all diacritics
38     */
39    IGNORE_DIACRITICS
40
41} // enum RegexFlag
Note: See TracBrowser for help on using the repository browser.