ChartIndicators.java

  1. /*
  2.  * Copyright 2010-2025 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.  * The Enum ChartIndicators.
  22.  */
  23. public enum ChartIndicators {

  24.     /** The all government role chart. */
  25.     ALL_GOVERNMENT_ROLE_CHART,

  26.     /** The allcommitteesbyheadcount. */
  27.     ALLCOMMITTEESBYHEADCOUNT,

  28.     /** The allministriesbyheadcount. */
  29.     ALLMINISTRIESBYHEADCOUNT,

  30.     /** The allministriespartybytotaldays. */
  31.     ALLMINISTRIESPARTYBYTOTALDAYS,

  32.     /** The allparties. */
  33.     ALLPARTIES,

  34.     /** The committeesbyparty. */
  35.     COMMITTEESBYPARTY,

  36.     /** The currentcommittees. */
  37.     CURRENTCOMMITTEES,

  38.     /** The currentcommitteesbyheadcount. */
  39.     CURRENTCOMMITTEESBYHEADCOUNT,

  40.     /** The currentcommitteesbypartyheadcount. */
  41.     CURRENTCOMMITTEESBYPARTYDAYSSERVED,

  42.     /** The currentgovermentparties. */
  43.     CURRENTGOVERMENTPARTIES,

  44.     /** The currentministriesbyheadcount. */
  45.     CURRENTMINISTRIESBYHEADCOUNT,

  46.     /** The currentministriesleaderscorecard. */
  47.     CURRENTMINISTRIESLEADERSCORECARD,

  48.     /** The currentparties. */
  49.     CURRENTPARTIES,

  50.     /** The currentpartyleaderscorecard. */
  51.     CURRENTPARTYLEADERSCORECARD,


  52.     /** The currentpartiesbyheadcount. */
  53.     CURRENTPARTIESBYHEADCOUNT,

  54.     /** The decision flow chart. */
  55.     DECISION_FLOW_CHART,

  56.     /** The decisionactivitybytype. */
  57.     DECISIONACTIVITYBYTYPE,

  58.     /** The documentactivitybytype. */
  59.     DOCUMENTACTIVITYBYTYPE,

  60.     /** The partyage. */
  61.     PARTYAGE,

  62.     /** The partygender. */
  63.     PARTYGENDER,

  64.     /** The partywinner. */
  65.     PARTYWINNER,
  66.  /** The governmentbodiesheadcount. */
  67.  GOVERNMENTBODIESHEADCOUNT,
  68.  /** The governmentbodiesincome. */
  69.  GOVERNMENTBODIESINCOME,
  70.  /** The governmentbodiesexpenditure. */
  71.  GOVERNMENTBODIESEXPENDITURE,
  72.  /** The governmentoutcome. */
  73.  GOVERNMENTOUTCOME,
  74.  /** The allgovernmentrolegantt. */
  75.  ALLGOVERNMENTROLEGANTT,
  76.  /** The allministriesbytotaldays. */
  77.  ALLMINISTRIESBYTOTALDAYS,
  78.  /** The risksummary. */
  79.  RISKSUMMARY,
  80.  /** The ruleviolation. */
  81.  RULEVIOLATION,
  82.  /** The documentactivity. */
  83.  DOCUMENTACTIVITY,
  84.  /** The decisionactivity. */
  85.  DECISIONACTIVITY,
  86.  /** The decisionflow. */
  87.  DECISIONFLOW,
  88.  /** The allgovernmentroles. */
  89.  ALLGOVERNMENTROLES,
  90.  /** The allpartiesbyheadcount. */
  91.  ALLPARTIESBYHEADCOUNT;

  92. }