Project

General

Profile

« Previous | Next » 

Revision 40135

finished stats data

View differences:

Series.java
30 30
		}
31 31
	}
32 32

  
33
	public enum Over implements IsSerializable {
34
		DAY("day"),
35
		MONTH("month"),
36
		YEAR("year");
37

  
38
		private String value = this.name();
39

  
40
		Over() {
41
		}
42

  
43
		Over(String value) {
44
			this.value = value;
45
		}
46

  
47
		public String getValue() {
48
			return value;
49
		}
50
	}
51

  
52 33
	private Map<Category, List<Tuple<String, Integer>>> data;
53 34

  
54 35
	public Series() {

Also available in: Unified diff