Project

General

Profile

Download (1.39 KB) Statistics
| Branch: | Tag: | Revision:
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.strategy;
11

    
12

    
13
/**
14
 * Tags for atomised taxon name strings and atomised reference citation strings.
15
 * Used by {@link TaggedText}.
16
 * 
17
 * @author a.kohlbecker
18
 * @version 1.0
19
 * @created 13.12.2007 12:04:15
20
 *
21
 */
22
public enum TagEnum {
23
	
24
	/**
25
	 *  A taxon name including genus name, epithet etc.
26
	 */
27
	name,
28
	/**
29
	 *  A name rank abbreviation, e.g. subsp.
30
	 */
31
	rank,
32
	/**
33
	 * Non-atomised addition to a taxon name not ruled by a nomenclatural code
34
	 */
35
	appendedPhrase,
36
	/**
37
	 * The authors of a reference, also used in taxon names 
38
	 */
39
	authors,
40
	/**
41
	 * a reference
42
	 */
43
	reference,
44
	/**
45
	 * Volume, page number etc. of a reference
46
	 */
47
	microreference,
48
	/**
49
	 * Publication year of a reference
50
	 */
51
	year,
52
	/**
53
	 *  A full taxon name including all name information and nomenclatural 
54
	 *  reference information
55
	 */
56
	fullName,
57
	/**
58
	 *  The nomenclatural status of a name 
59
	 */
60
	nomStatus,
61
	/**
62
	 *  A separator to separate two tags () . 
63
	 *  A separator should include all needed whitespaces. So adding of whitespace 
64
	 *  is not needed if a separator is given.
65
	 */
66
	separator,
67
	/**
68
	 *  The hybrid sign. 
69
	 */
70
	hybridSign,
71
	
72
	
73
}
(3-3/5)