All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.eurodyn.qlack2.be.rules.impl.util.ConfigParam Maven / Gradle / Ivy

There is a newer version: 2.3.18
Show newest version
package com.eurodyn.qlack2.be.rules.impl.util;

/**
 * The configuration parameters which can be edited through the
 * Rules application
 * @author European Dynamics SA
 *
 */
public enum ConfigParam {
	MAX_FILE_SIZE("maxFileSize");
	
	private String name;
	ConfigParam(String name) {
		this.name = name;
	}
	
	public static boolean contains(String value) {
	    for (ConfigParam param : ConfigParam.values()) {
	        if (param.toString().equals(value)) {
	            return true;
	        }
	    }
	    return false;
	}
	
	@Override
	public String toString() {
		return name;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy