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

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

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

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

import net.thisptr.jackson.jq.JsonQuery;
import net.thisptr.jackson.jq.Scope;

import com.fasterxml.jackson.databind.JsonNode;

public class ThisObject extends JsonQuery {
	@Override
	public List apply(Scope scope, JsonNode in) {
		return Collections.singletonList(in);
	}

	@Override
	public String toString() {
		return ".";
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy