(no commit message)
[cdmlib.git] / cdmlib-remote / src / main / java / eu / etaxonomy / cdm / remote / dto / TagEnum.java
1 /**
2 * Copyright (C) 2007 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9
10 package eu.etaxonomy.cdm.remote.dto;
11
12 /**
13 * Tags for atomised taxon name strings and atomised reference citation strings.
14 * Used by {@link TaggedText}.
15 *
16 * @author a.kohlbecker
17 * @version 1.0
18 * @created 13.12.2007 12:04:15
19 *
20 */
21 public enum TagEnum {
22
23 /**
24 * A taxon name including genus name, epithet etc.
25 */
26 name,
27 /**
28 * A name rank abbreviation, e.g. subsp.
29 */
30 rank,
31 /**
32 * Non-atomised addition to a taxon name not ruled by a nomenclatural code
33 */
34 appendedPhrase,
35 /**
36 * The authors of a reference, also used in taxon names
37 */
38 authors,
39 /**
40 * a reference
41 */
42 reference,
43 /**
44 * Volume, page number etc. of a reference
45 */
46 microreference,
47 /**
48 * publication year of a reference
49 */
50 year,
51 }