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

com.github.fluentxml4j.internal.query.ToBooleanConverter Maven / Gradle / Ivy

package com.github.fluentxml4j.internal.query;

import org.w3c.dom.Node;

interface ToBooleanConverter
{
	static Boolean toBoolean(Node node)
	{
		String s = ToStringConverter.toString(node);
		if (s == null)
		{
			return null;
		}

		return Boolean.valueOf(s);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy