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

net.thisptr.jackson.jq.internal.tree.literal.DoubleLiteral Maven / Gradle / Ivy

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

import com.fasterxml.jackson.databind.node.DoubleNode;

public class DoubleLiteral extends ValueLiteral {
	public DoubleLiteral(final double value) {
		super(new DoubleNode(value));
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy