source: SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUWhereInList.java @ 2168

Last change on this file since 2168 was 2168, checked in by oschonef, 12 years ago
  • update copyright
  • add missing copyright statements
  • Property svn:eol-style set to native
File size: 988 bytes
Line 
1/**
2 * This software is copyright (c) 2011-2012 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.client;
18
19/**
20 * A flag to indicate the position of the term within the complete term
21 * list.
22 */
23public enum SRUWhereInList {
24    /**
25     * The first term (<em>first</em>)
26     */
27    FIRST,
28
29    /**
30     * The last term (<em>last</em>)
31     */
32    LAST,
33
34    /**
35     * The only term (<em>only</em>)
36     */
37    ONLY,
38
39    /**
40     * Any other term (<em>inner</em>)
41     */
42    INNER
43
44} // enum SRUWhereInList
Note: See TracBrowser for help on using the repository browser.