Severity.java

/*
 * GovWay - A customizable API Gateway 
 * https://govway.org
 * 
 * Copyright (c) 2005-2024 Link.it srl (https://link.it).
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 3, as published by
 * the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */
package org.openspcoop2.utils.logger.constants;

import java.io.Serializable;

/**
 * Severity
 *
 * @author Poli Andrea (apoli@link.it)
 * @author $Author$
 * @version $Rev$, $Date$
 */
public enum Severity implements Serializable {

	DEBUG_HIGH, DEBUG_MEDIUM, DEBUG_LOW, INFO, WARN, ERROR, FATAL;  
	
	public int intValue(){
		switch (this) {
		case FATAL:
			return 0; 
		case ERROR:
			return 1; 
		case WARN:
			return 2; 
		case INFO:
			return 3; 
		case DEBUG_LOW:
			return 4; 
		case DEBUG_MEDIUM:
			return 5; 
		case DEBUG_HIGH:
			return 6; 
		}
		return -1;
	}
	
	public static Severity toSeverity(int value){
		if(value == 0){
			return FATAL;
		}
		else if(value == 1){
			return ERROR;
		}
		else if(value == 2){
			return WARN;
		}
		else if(value == 3){
			return INFO;
		}
		else if(value == 4){
			return DEBUG_LOW;
		}
		else if(value == 5){
			return DEBUG_MEDIUM;
		}
		else if(value == 6){
			return DEBUG_HIGH;
		}
		return null;
	}
	
}