Class LookupFunction

java.lang.Object
com.api.jsonata4java.expressions.functions.FunctionBase
com.api.jsonata4java.expressions.functions.LookupFunction

public class LookupFunction extends FunctionBase
From http://docs.jsonata.org/object-functions.html $lookup(object,key) Returns the value corresponding to the key in the supplied object. It is an error if the input is not an object, and if the key is not a String. Example $lookup({"a":1,"b":2},"b")==2