Uses of Interface
jsonvalues.spec.JsArraySpec
Packages that use JsArraySpec
Package
Description
This package includes all the classes to define specs to validate and parse JSON
-
Uses of JsArraySpec in jsonvalues.spec
Methods in jsonvalues.spec that return JsArraySpecModifier and TypeMethodDescriptionstatic JsArraySpecJsSpecs.array()non-nullable array specstatic JsArraySpecnon-nullable array, where each element of the array satisfies the given predicatestatic JsArraySpecJsSpecs.arrayOfBigInt()non-nullable array of integral numbers specstatic JsArraySpecJsSpecs.arrayOfBigInt(int minLength, int maxLength) returns an array of big integers specstatic JsArraySpecJsSpecs.arrayOfBigInt(Predicate<BigInteger> predicate) non-nullable array of integral numbers, where each element of the array satisfies the given predicatestatic JsArraySpecJsSpecs.arrayOfBigInt(Predicate<BigInteger> predicate, int minLength, int maxLength) non-nullable array of integral numbers, where each element of the array satisfies the given predicatestatic JsArraySpecJsSpecs.arrayOfBigIntSuchThat(Predicate<JsArray> predicate) non-nullable array of integral numbers that satisfies the given predicatestatic JsArraySpecJsSpecs.arrayOfBool()non-nullable array of booleans specstatic JsArraySpecJsSpecs.arrayOfBool(int minLength, int maxLength) returns an array of boolean specstatic JsArraySpecJsSpecs.arrayOfBoolSuchThat(Predicate<JsArray> predicate) non-nullable array of booleans that satisfies the given predicatestatic JsArraySpecJsSpecs.arrayOfDec()non-nullable array of decimal numbers specstatic JsArraySpecJsSpecs.arrayOfDec(int minLength, int maxLength) returns an array of decimal numbers specstatic JsArraySpecJsSpecs.arrayOfDec(Predicate<BigDecimal> predicate) non-nullable array of decimal numbers, where each element of the array satisfies the given predicatestatic JsArraySpecJsSpecs.arrayOfDec(Predicate<BigDecimal> predicate, int minLength, int maxLength) non-nullable array of decimal numbers, where each element of the array satisfies the given predicatestatic JsArraySpecJsSpecs.arrayOfDecSuchThat(Predicate<JsArray> predicate) non-nullable array of decimal numbers that satisfies the given predicatestatic JsArraySpecJsSpecs.arrayOfInt()non-nullable array of integer numbers specstatic JsArraySpecJsSpecs.arrayOfInt(int minLength, int maxLength) returns an array of integers specstatic JsArraySpecJsSpecs.arrayOfInt(IntPredicate predicate) non-nullable array of integer numbers, where each element of the array satisfies the given predicatestatic JsArraySpecJsSpecs.arrayOfInt(IntPredicate predicate, int minLength, int maxLength) non-nullable array of integer numbers, where each element of the array satisfies the given predicatestatic JsArraySpecJsSpecs.arrayOfIntSuchThat(Predicate<JsArray> predicate) non-nullable array of numbers that satisfies the given predicatestatic JsArraySpecJsSpecs.arrayOfLong()non-nullable array of long numbers specstatic JsArraySpecJsSpecs.arrayOfLong(int minLength, int maxLength) returns an array of longs specstatic JsArraySpecJsSpecs.arrayOfLong(LongPredicate predicate) non-nullable array of long numbers, where each element of the array satisfies the given predicatestatic JsArraySpecJsSpecs.arrayOfLong(LongPredicate predicate, int minLength, int maxLength) non-nullable array of long numbers, where each element of the array satisfies the given predicatestatic JsArraySpecJsSpecs.arrayOfLongSuchThat(Predicate<JsArray> predicate) non-nullable array of long numbers that satisfies the given predicatestatic JsArraySpecJsSpecs.arrayOfNumber()non-nullable array of numbers specstatic JsArraySpecJsSpecs.arrayOfNumber(int minLength, int maxLength) returns an array of numbers specstatic JsArraySpecJsSpecs.arrayOfNumber(Predicate<JsNumber> predicate) non-nullable array of numbers, where each element of the array satisfies the given predicatestatic JsArraySpecJsSpecs.arrayOfNumber(Predicate<JsNumber> predicate, int minLength, int maxLength) non-nullable array of numbers, where each element of the array satisfies the given predicatestatic JsArraySpecJsSpecs.arrayOfNumberSuchThat(Predicate<JsArray> predicate) non-nullable array of numbers that satisfies the given predicatestatic JsArraySpecJsSpecs.arrayOfObj()non-nullable array of objects specstatic JsArraySpecJsSpecs.arrayOfObj(int minLength, int maxLength) returns an array of objects specstatic JsArraySpecJsSpecs.arrayOfObj(Predicate<JsObj> predicate) non-nullable array of objects, where each element of the array satisfies the given predicatestatic JsArraySpecJsSpecs.arrayOfObj(Predicate<JsObj> predicate, int minLength, int maxLength) non-nullable array of objects, where each element of the array satisfies the given predicatestatic JsArraySpecJsSpecs.arrayOfObjSpec(JsObjSpec spec) A required and none nullable spec that specifies an array of objects that conform the given specstatic JsArraySpecJsSpecs.arrayOfObjSpec(JsObjSpec spec, int minLength, int maxLength) A required and none nullable spec that specifies an array of objects that conform the given specstatic JsArraySpecJsSpecs.arrayOfObjSuchThat(Predicate<JsArray> predicate) non-nullable array of objects that satisfies the given predicatestatic JsArraySpecJsSpecs.arrayOfStr()non-nullable array of strings specstatic JsArraySpecJsSpecs.arrayOfStr(int minLength, int maxLength) returns an array of strings specstatic JsArraySpecJsSpecs.arrayOfStr(Predicate<String> predicate) non-nullable array of strings, where each element of the array satisfies the given predicatestatic JsArraySpecJsSpecs.arrayOfStr(Predicate<String> predicate, int minLength, int maxLength) non-nullable array of strings, where each element of the array satisfies the given predicatestatic JsArraySpecJsSpecs.arrayOfStrSuchThat(Predicate<JsArray> predicate) non-nullable array of strings that satisfies the given predicatestatic JsArraySpecJsSpecs.arraySuchThat(Predicate<JsArray> predicate) non-nullable array that satisfies the given predicateConstructors in jsonvalues.spec with parameters of type JsArraySpec