Project

General

Profile

Download (5.85 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.Language;
26
import eu.etaxonomy.cdm.model.term.DefinedTermBase;
27
import eu.etaxonomy.cdm.model.term.TermType;
28
import eu.etaxonomy.cdm.model.term.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
 * @since 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.term.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
    private static final UUID uuidExactValue = UUID.fromString("29736701-58c4-48b3-a9d7-41c74140cac7");
63
	//needed for Xper (later maybe integrated into model)
64
	public  static final UUID uuidStatisticalMeasureUnknownData = UUID.fromString("4bbd6e78-6d4e-4ec8-ac14-12f53aae049e");
65

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

    
91

    
92
//********************************** Constructor *******************************************************************/
93

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

    
109

    
110
//************************** METHODS ********************************
111

    
112
	@Override
113
	public void resetTerms(){
114
		termMap = null;
115
	}
116

    
117

    
118

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

    
127
	public static final StatisticalMeasure MIN(){
128
		return getTermByUuid(uuidMin);
129
	}
130

    
131
	public static final StatisticalMeasure MAX(){
132
		return getTermByUuid(uuidMax);
133
	}
134

    
135
	public static final StatisticalMeasure AVERAGE(){
136
		return getTermByUuid(uuidAverage);
137
	}
138

    
139
	public static final StatisticalMeasure SAMPLE_SIZE(){
140
		return getTermByUuid(uuidSampleSize);
141
	}
142

    
143
	public static final StatisticalMeasure VARIANCE(){
144
		return getTermByUuid(uuidVariance);
145
	}
146

    
147
	public static final StatisticalMeasure TYPICAL_LOWER_BOUNDARY(){
148
		return getTermByUuid(uuidTypicalLowerBoundary);
149
	}
150

    
151
	public static final StatisticalMeasure TYPICAL_UPPER_BOUNDARY(){
152
		return getTermByUuid(uuidTypicalUpperBoundary);
153
	}
154

    
155
	public static final StatisticalMeasure STANDARD_DEVIATION(){
156
		return getTermByUuid(uuidStandardDeviation);
157
	}
158

    
159
    public static final StatisticalMeasure EXACT_VALUE(){
160
        return getTermByUuid(uuidExactValue);
161
    }
162

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

    
171
}
(29-29/37)