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

com.abubusoft.kripton.xml.XmlAttributeUtils Maven / Gradle / Ivy

There is a newer version: 8.2.0-rc.4
Show newest version
package com.abubusoft.kripton.xml;

import com.abubusoft.kripton.common.StringUtils;

/**
 * @author Francesco Benincasa ([email protected])
 *
 */
public class XmlAttributeUtils {
	
	public static boolean getAttributeAsBoolean(XmlPullParser parser, String attributeName, boolean defaultValue) throws Exception
	{
		//parser.getText()
		String value=parser.getAttributeValue(null, attributeName);
		
		if (!StringUtils.hasText(value))
		{
			return defaultValue;
		}	
		
		return Boolean.parseBoolean(value);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy