View Javadoc

1   /*
2    * This file is a part of CAST project.
3    * (c) Copyright 2007, AGH University of Science & Technology
4    * https://caribou.iisg.agh.edu.pl/trac/cast
5    *
6    * Licensed under the Eclipse Public License, Version 1.0 (the "License").
7    * You may not use this file except in compliance with the License.
8    * You may obtain a copy of the License at
9    * http://www.eclipse.org/legal/epl-v10.html
10   */
11  /*
12   * File: ErrorSeverity.java
13   * Created: 2008-04-07
14   * Author: entrop
15   * $Id: ErrorSeverity.java 2308 2009-01-12 22:33:45Z kpietak $
16   */
17  
18  package pl.edu.agh.cast.rawdata.stat;
19  
20  /**
21   * Available error severities.
22   * 
23   * @author AGH CAST Team
24   * 
25   */
26  public enum ErrorSeverity {
27  	/**
28  	 * Warning severity. It means that data are probably improper but can be imported.
29  	 */
30  	WARNING,
31  	/**
32  	 * Error severity. It means that data are wrong and cannot be imported at all.
33  	 */
34  	ERROR
35  }