首页 > 代码库 > 字符串转枚举

字符串转枚举

package company.entry;

public enum BoqNode {
	table,startLine,endLine;
	
	public static BoqNode getEnumFromString(String str)
	{
		if(str != null)
		{
			try 
			{
				return Enum.valueOf(BoqNode.class, str);
			} 
			catch (IllegalArgumentException e) 
			{
				// TODO: handle exception
				e.printStackTrace();
			}
		}
		return null;
	}
	
}


字符串转枚举