View Javadoc

1   /**
2    * 2014, Digitalis Informatica. All rights reserved. Distribuicao e Gestao de Informatica, Lda. Estrada de Paco de Arcos
3    * num.9 - Piso -1 2780-666 Paco de Arcos Telefone: (351) 21 4408990 Fax: (351) 21 4408999 http://www.digitalis.pt
4    */
5   
6   package pt.digitalis.dif.dem.objects;
7   
8   /**
9    * Defintion of the state of a feature
10   * 
11   * @author Pedro Viegas <a href="mailto:pviegas@digitalis.pt">pviegas@digitalis.pt</a><br/>
12   * @created 28/01/2014
13   */
14  public enum FeatureState {
15      /** Feature is on or off according to it's default defined value */
16      DEFAULT,
17      /** Feature is OFF */
18      OFF,
19      /** Feature is ON */
20      ON;
21  }