1 /*
2 * Copyright 2014 James Pether Sörling
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *
16 * $Id$
17 * $HeadURL$
18 */
19 package com.hack23.cia.web.impl.ui.application.views.common.viewnames;
20
21 /**
22 * The Enum ChartIndicators.
23 */
24 public enum ChartIndicators {
25
26 /** The partywinner. */
27 PARTYWINNER,
28
29 /** The partygender. */
30 PARTYGENDER,
31
32 /** The partyage. */
33 PARTYAGE,
34
35 /** The documentactivitybytype. */
36 DOCUMENTACTIVITYBYTYPE,
37
38 /** The decisionactivitybytype. */
39 DECISIONACTIVITYBYTYPE,
40
41 /** The allministriesbyheadcount. */
42 ALLMINISTRIESBYHEADCOUNT,
43
44 /** The currentministriesbyheadcount. */
45 CURRENTMINISTRIESBYHEADCOUNT,
46
47 /** The allministriespartybytotaldays. */
48 ALLMINISTRIESPARTYBYTOTALDAYS,
49
50 /** The currentpartiesbyheadcount. */
51 CURRENTPARTIESBYHEADCOUNT,
52
53 /** The allcommitteesbyheadcount. */
54 ALLCOMMITTEESBYHEADCOUNT,
55
56 /** The committeesbyparty. */
57 COMMITTEESBYPARTY,
58
59 /** The currentcommitteesbyheadcount. */
60 CURRENTCOMMITTEESBYHEADCOUNT,
61
62 /** The currentcommitteesbypartyheadcount. */
63 CURRENTCOMMITTEESBYPARTYHEADCOUNT,
64
65 /** The allparties. */
66 ALLPARTIES,
67
68 /** The currentcommittees. */
69 CURRENTCOMMITTEES,
70
71 /** The currentgovermentparties. */
72 CURRENTGOVERMENTPARTIES,
73
74 /** The currentparties. */
75 CURRENTPARTIES,
76
77 /** The all government role chart. */
78 ALL_GOVERNMENT_ROLE_CHART;
79
80 }