Project

General

Profile

Download (5.74 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.model.description;
11

    
12
import java.util.HashMap;
13
import java.util.Map;
14
import java.util.UUID;
15

    
16
import javax.persistence.Entity;
17
import javax.xml.bind.annotation.XmlAccessType;
18
import javax.xml.bind.annotation.XmlAccessorType;
19
import javax.xml.bind.annotation.XmlRootElement;
20
import javax.xml.bind.annotation.XmlType;
21

    
22
import org.apache.log4j.Logger;
23
import org.hibernate.envers.Audited;
24

    
25
import eu.etaxonomy.cdm.model.common.DefinedTermBase;
26
import eu.etaxonomy.cdm.model.common.Language;
27
import eu.etaxonomy.cdm.model.common.TermType;
28
import eu.etaxonomy.cdm.model.common.TermVocabulary;
29

    
30
/**
31
/**
32
 * This class represents terms describing different statistical measures (such
33
 * as "sample size", "minimum" or "average") for {@link Feature features} that can be
34
 * described with numerical values (like for instance weights or temperature).
35
 *
36
 * @author m.doering
37
 * @created 08-Nov-2007 13:06:54
38
 */
39
@XmlAccessorType(XmlAccessType.FIELD)
40
@XmlType(name = "StatisticalMeasure")
41
@XmlRootElement(name = "StatisticalMeasure")
42
@Entity
43
//@Indexed disabled to reduce clutter in indexes, since this type is not used by any search
44
//@Indexed(index = "eu.etaxonomy.cdm.model.common.DefinedTermBase")
45
@Audited
46
public class StatisticalMeasure extends DefinedTermBase<StatisticalMeasure> {
47
	private static final long serialVersionUID = 9168097283660941430L;
48
	@SuppressWarnings("unused")
49
	private static final Logger logger = Logger.getLogger(StatisticalMeasure.class);
50

    
51
	protected static Map<UUID, StatisticalMeasure> termMap = null;
52

    
53

    
54
	private static final UUID uuidMin = UUID.fromString("2c8b42e5-154c-42bd-a301-03b483275dd6");
55
	private static final UUID uuidMax = UUID.fromString("8955815b-7d21-4149-b1b7-d37af3c2046c");
56
	private static final UUID uuidAverage = UUID.fromString("264c3979-d551-4795-9e25-24c6b533fbb1");
57
	private static final UUID uuidSampleSize = UUID.fromString("571f86ca-a44c-4484-9981-11fd82138a7a");
58
	private static final UUID uuidVariance = UUID.fromString("4d22cf5e-89ff-4de3-a9ae-12dbeda3faba");
59
	private static final UUID uuidTypicalLowerBoundary = UUID.fromString("8372a89a-35ad-4755-a881-7edae6c37c8f");
60
	private static final UUID uuidTypicalUpperBoundary = UUID.fromString("9eff88ba-b8e7-4631-9e55-a50bd16ba79d");
61
	private static final UUID uuidStandardDeviation = UUID.fromString("9ee4397e-3496-4fe1-9114-afc7d7bdc652");
62
	//needed for Xper (later maybe integrated into model)
63
	public  static final UUID uuidStatisticalMeasureUnknownData = UUID.fromString("4bbd6e78-6d4e-4ec8-ac14-12f53aae049e");
64

    
65
	//********* FACTORY METHODS **************************************/
66
	/**
67
	 * Creates a new empty statistical measure instance.
68
	 *
69
	 * @see #NewInstance(String, String, String)
70
	 */
71
	public static StatisticalMeasure NewInstance(){
72
		return new StatisticalMeasure();
73
	}
74
	/**
75
	 * Creates a new statistical measure instance with a description
76
	 * (in the {@link Language#DEFAULT() default language}), a label and a label abbreviation.
77
	 *
78
	 * @param	term  		 the string (in the default language) describing the
79
	 * 						 new statistical measure to be created
80
	 * @param	label  		 the string identifying the new statistical measure
81
	 * 						 to be created
82
	 * @param	labelAbbrev  the string identifying (in abbreviated form) the
83
	 * 						 new statistical measure to be created
84
	 * @see 				 #NewInstance()
85
	 */
86
	public static StatisticalMeasure NewInstance(String term, String label, String labelAbbrev){
87
		return new StatisticalMeasure(term, label, labelAbbrev);
88
	}
89

    
90

    
91
//********************************** Constructor *******************************************************************/
92

    
93
	// ************* CONSTRUCTORS *************/
94
	/**
95
	 * Class constructor: creates a new empty statistical measure instance.
96
	 *
97
	 * @see #StatisticalMeasure(String, String, String)
98
	 */
99
	//for hibernate use only
100
	@Deprecated
101
	protected StatisticalMeasure() {
102
		super(TermType.StatisticalMeasure);
103
	}
104
	private StatisticalMeasure(String term, String label, String labelAbbrev) {
105
		super(TermType.StatisticalMeasure, term, label, labelAbbrev);
106
	}
107

    
108

    
109
//************************** METHODS ********************************
110

    
111
	/* (non-Javadoc)
112
	 * @see eu.etaxonomy.cdm.model.common.DefinedTermBase#resetTerms()
113
	 */
114
	@Override
115
	public void resetTerms(){
116
		termMap = null;
117
	}
118

    
119

    
120

    
121
	protected static StatisticalMeasure getTermByUuid(UUID uuid){
122
        if (termMap == null || termMap.isEmpty()){
123
            return getTermByClassAndUUID(StatisticalMeasure.class, uuid);
124
        } else {
125
            return termMap.get(uuid);
126
        }
127
	}
128

    
129
	public static final StatisticalMeasure MIN(){
130
		return getTermByUuid(uuidMin);
131
	}
132

    
133
	public static final StatisticalMeasure MAX(){
134
		return getTermByUuid(uuidMax);
135
	}
136

    
137
	public static final StatisticalMeasure AVERAGE(){
138
		return getTermByUuid(uuidAverage);
139
	}
140

    
141
	public static final StatisticalMeasure SAMPLE_SIZE(){
142
		return getTermByUuid(uuidSampleSize);
143
	}
144

    
145
	public static final StatisticalMeasure VARIANCE(){
146
		return getTermByUuid(uuidVariance);
147
	}
148

    
149
	public static final StatisticalMeasure TYPICAL_LOWER_BOUNDARY(){
150
		return getTermByUuid(uuidTypicalLowerBoundary);
151
	}
152

    
153
	public static final StatisticalMeasure TYPICAL_UPPER_BOUNDARY(){
154
		return getTermByUuid(uuidTypicalUpperBoundary);
155
	}
156

    
157
	public static final StatisticalMeasure STANDARD_DEVIATION(){
158
		return getTermByUuid(uuidStandardDeviation);
159
	}
160

    
161

    
162
	@Override
163
	protected void setDefaultTerms(TermVocabulary<StatisticalMeasure> termVocabulary) {
164
		termMap = new HashMap<UUID, StatisticalMeasure>();
165
		for (StatisticalMeasure term : termVocabulary.getTerms()){
166
			termMap.put(term.getUuid(), term);
167
		}
168
	}
169

    
170
}
(27-27/36)