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

com.axiomalaska.cf4j.CFStandardNameUtil Maven / Gradle / Ivy

package com.axiomalaska.cf4j;

import java.lang.reflect.Field;

public class CFStandardNameUtil {
	public static CFStandardName getCFStandardName( String name ){
		try{
			Field field = CFStandardNames.class.getField( name.toUpperCase() );
			if( field == null ){
				return null;
			}
			return (CFStandardName) field.get(null);
		} catch( Exception e ){
			//that's ok
		}
		return null;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy