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

com.groupbyinc.common.jackson.jq.internal.tree.literal.StringLiteral Maven / Gradle / Ivy

The newest version!
package net.thisptr.jackson.jq.internal.tree.literal;

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

public class StringLiteral extends ValueLiteral {
	public StringLiteral(final String text) {
		super(new TextNode(text));
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy