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

com.groupbyinc.common.jackson.jq.internal.functions.ToNumberFunction Maven / Gradle / Ivy

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

import java.util.Collections;
import java.util.List;

import net.thisptr.jackson.jq.Function;
import net.thisptr.jackson.jq.JsonQuery;
import net.thisptr.jackson.jq.Scope;
import net.thisptr.jackson.jq.exception.JsonQueryException;
import net.thisptr.jackson.jq.internal.BuiltinFunction;
import net.thisptr.jackson.jq.internal.misc.JsonNodeUtils;

import com.fasterxml.jackson.databind.JsonNode;

@BuiltinFunction("tonumber/0")
public class ToNumberFunction implements Function {
	@Override
	public List apply(final Scope scope, final List args, final JsonNode in) throws JsonQueryException {
		if (in.isNumber()) {
			return Collections.singletonList(in);
		} else if (in.isTextual()) {
			final double value = Double.parseDouble(in.asText());
			return Collections.singletonList(JsonNodeUtils.asNumericNode(value));
		} else {
			throw JsonQueryException.format("%s cannot be parsed as a number", in.getNodeType());
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy