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

org.mentawai.util.EnumUtils Maven / Gradle / Ivy

Go to download

A Java full-stack web framework with programmatic configuration instead of XML and Annotations.

There is a newer version: 2.5.6
Show newest version
package org.mentawai.util;

public class EnumUtils {

	public static > T getFromString(Class c, String string) {
		
		if (c != null && string != null) {
		
			try {
			
				return Enum.valueOf(c, string.trim().toUpperCase());
			} catch (IllegalArgumentException e) {
				
			}
		}
		
		return null;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy