static JsPair |
JsPair.of(java.lang.String key,
boolean b) |
Returns a json pair from the key and the boolean.
|
static JsPair |
JsPair.of(java.lang.String key,
double d) |
Returns a json pair from the key and the double.
|
static JsPair |
JsPair.of(java.lang.String key,
int i) |
Returns a json pair from the key and the integer.
|
static JsPair |
JsPair.of(java.lang.String key,
long l) |
Returns a json pair from the key and the long.
|
static JsPair |
JsPair.of(java.lang.String key,
java.lang.String s) |
Returns a json pair from the key and the string.
|
static JsPair |
JsPair.of(java.lang.String key,
java.math.BigDecimal bd) |
Returns a json pair from the key and the big decimal.
|
static JsPair |
JsPair.of(java.lang.String key,
java.math.BigInteger bi) |
Returns a json pair from the key and the big integer.
|
static JsPair |
JsPair.of(JsPath path,
boolean b) |
Returns a json pair from the path and the boolean.
|
static JsPair |
JsPair.of(JsPath path,
double d) |
Returns a json pair from the path and the double.
|
static JsPair |
JsPair.of(JsPath path,
int i) |
Returns a json pair from the path and the integer.
|
static JsPair |
JsPair.of(JsPath path,
long l) |
Returns a json pair from the path and the long.
|
static JsPair |
JsPair.of(JsPath path,
java.lang.String s) |
Returns a json pair from the path and the string.
|
static JsPair |
JsPair.of(JsPath path,
java.math.BigDecimal bd) |
Returns a json pair from the path and the big decimal.
|
static JsPair |
JsPair.of(JsPath path,
java.math.BigInteger bi) |
Returns a json pair from the path and the big integer.
|
static JsPair |
JsPair.of(JsPath path,
JsValue elem) |
Returns a json pair from the path and the json element.
|