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

net.thisptr.jackson.jq.internal.functions.IsNormalFunction Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package net.thisptr.jackson.jq.internal.functions;

import com.fasterxml.jackson.databind.JsonNode;
import com.google.auto.service.AutoService;

import net.thisptr.jackson.jq.BuiltinFunction;
import net.thisptr.jackson.jq.Function;
import net.thisptr.jackson.jq.internal.JsonPredicateFunction;

@AutoService(Function.class)
@BuiltinFunction("isnormal/0")
public class IsNormalFunction extends JsonPredicateFunction {
	public IsNormalFunction() {
		super(IsNormalFunction::test);
	}

	private static boolean test(final JsonNode value) {
		if (!value.isNumber())
			return false;
		final double v = value.asDouble();
		return !Double.isInfinite(v) && (v <= -Double.MIN_NORMAL || Double.MIN_NORMAL <= v);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy