Class KeysFunction

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

public class KeysFunction extends FunctionBase
From http://docs.jsonata.org/object-functions.html $keys(object) Returns the keys in an array of Strings. It is an error if the input is not an object. Example $keys({"a":1,"b":2})==["a", "b"]