static JsArraySpec |
JsSpecs.array(java.util.function.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(java.util.function.Predicate<JsArray> predicate) |
non-nullable array of booleans that satisfies the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfDec(java.util.function.Predicate<java.math.BigDecimal> predicate) |
non-nullable array of decimal numbers, where each element of the array satisfies
the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfDecSuchThat(java.util.function.Predicate<JsArray> predicate) |
non-nullable array of decimal numbers that satisfies the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfInt(java.util.function.IntPredicate predicate) |
non-nullable array of integer numbers, where each element of the array satisfies the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfIntegral(java.util.function.Predicate<java.math.BigInteger> predicate) |
non-nullable array of integral numbers, where each element of the array satisfies
the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfIntegralSuchThat(java.util.function.Predicate<JsArray> predicate) |
non-nullable array of integral numbers that satisfies the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfIntSuchThat(java.util.function.Predicate<JsArray> predicate) |
non-nullable array of numbers that satisfies the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfLong(java.util.function.LongPredicate predicate) |
non-nullable array of long numbers, where each element of the array satisfies the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfLongSuchThat(java.util.function.Predicate<JsArray> predicate) |
non-nullable array of long numbers that satisfies the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfNumber(java.util.function.Predicate<JsNumber> predicate) |
non-nullable array of numbers, where each element of the array satisfies
the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfNumberSuchThat(java.util.function.Predicate<JsArray> predicate) |
non-nullable array of numbers that satisfies the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfObj(java.util.function.Predicate<JsObj> predicate) |
non-nullable array of objects, where each element of the array satisfies
the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfObjSuchThat(java.util.function.Predicate<JsArray> predicate) |
non-nullable array of objects that satisfies the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfStr(java.util.function.Predicate<java.lang.String> predicate) |
non-nullable array of strings, where each element of the array satisfies the given predicate
|
static JsArraySpec |
JsSpecs.arrayOfStrSuchThat(java.util.function.Predicate<JsArray> predicate) |
non-nullable array of strings that satisfies the given predicate
|
static JsArraySpec |
JsSpecs.arraySuchThat(java.util.function.Predicate<JsArray> predicate) |
non-nullable array that satisfies the given predicate
|