static JsArraySpec |
JsSpecs.array(Predicate<JsValue> predicate) |
non-nullable array, where each element of the array satisfies the given predicate
|
static JsArraySpec |
JsSpecs.arrayOf(JsObjSpec spec) |
A required and none nullable spec that specifies an array of objects that conform the given spec
|
static JsArraySpec |
JsSpecs.arrayOfBoolSuchThat(Predicate<JsArray> predicate) |
non-nullable array of booleans that satisfies the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfDec(Predicate<BigDecimal> predicate) |
non-nullable array of decimal numbers, where each element of the array satisfies
the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfDecSuchThat(Predicate<JsArray> predicate) |
non-nullable array of decimal numbers that satisfies the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfInt(IntPredicate predicate) |
non-nullable array of integer numbers, where each element of the array satisfies the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfIntegral(Predicate<BigInteger> predicate) |
non-nullable array of integral numbers, where each element of the array satisfies
the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfIntegralSuchThat(Predicate<JsArray> predicate) |
non-nullable array of integral numbers that satisfies the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfIntSuchThat(Predicate<JsArray> predicate) |
non-nullable array of numbers that satisfies the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfLong(LongPredicate predicate) |
non-nullable array of long numbers, where each element of the array satisfies the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfLongSuchThat(Predicate<JsArray> predicate) |
non-nullable array of long numbers that satisfies the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfNumber(Predicate<JsNumber> predicate) |
non-nullable array of numbers, where each element of the array satisfies
the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfNumberSuchThat(Predicate<JsArray> predicate) |
non-nullable array of numbers that satisfies the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfObj(Predicate<JsObj> predicate) |
non-nullable array of objects, where each element of the array satisfies
the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfObjSuchThat(Predicate<JsArray> predicate) |
non-nullable array of objects that satisfies the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfStr(Predicate<String> predicate) |
non-nullable array of strings, where each element of the array satisfies the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfStrSuchThat(Predicate<JsArray> predicate) |
non-nullable array of strings that satisfies the given predicate
|
static JsArraySpec |
JsSpecs.arraySuchThat(Predicate<JsArray> predicate) |
non-nullable array that satisfies the given predicate
|