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

Last change on this file since 2163 was 2163, checked in by oschonef, 12 years ago

OT: I saw tail lights last night in a dream about my first wife ...

  • Property svn:eol-style set to native
File size: 434 bytes
Line 
1package eu.clarin.sru.client;
2
3/**
4 * A flag to indicate the position of the term within the complete term
5 * list.
6 */
7public enum SRUWhereInList {
8    /**
9     * The first term (<em>first</em>)
10     */
11    FIRST,
12
13    /**
14     * The last term (<em>last</em>)
15     */
16    LAST,
17
18    /**
19     * The only term (<em>only</em>)
20     */
21    ONLY,
22
23    /**
24     * Any other term (<em>inner</em>)
25     */
26    INNER
27
28} // enum SRUWhereInList
Note: See TracBrowser for help on using the repository browser.