首页 > 其他 > 详细

字符串转枚举

时间:2016-11-29 11:49:38      阅读:194      评论:0      收藏:0      [点我收藏+]
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;
	}
	
}


字符串转枚举

原文:http://nonkey.blog.51cto.com/6923493/1877536

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!