Uses of Class
jsonvalues.spec.BigIntSchema
Packages that use BigIntSchema
Package
Description
The `jsonvalues.spec` package provides classes and interfaces for defining and working with JSON specifications
(specs) and parsers.
-
Uses of BigIntSchema in jsonvalues.spec
Methods in jsonvalues.spec that return BigIntSchemaModifier and TypeMethodDescriptionstatic BigIntSchema
BigIntSchema.between
(BigInteger minimum, BigInteger maximum) static BigIntSchema
BigIntSchema.withMaximum
(BigInteger maximum) static BigIntSchema
BigIntSchema.withMinimum
(BigInteger minimum) Methods in jsonvalues.spec with parameters of type BigIntSchemaModifier and TypeMethodDescriptionstatic JsArraySpec
JsSpecs.arrayOfBigInt
(BigIntSchema schema) non-nullable array of big integer numbers.static JsArraySpec
JsSpecs.arrayOfBigInt
(BigIntSchema schema, ArraySchema arraySchema) non-nullable array of big integer numbers.static JsSpec
JsSpecs.bigInteger
(BigIntSchema schema) Returns a specification for a non-nullable big integer number that satisfies the given schema.static JsSpec
JsSpecs.mapOfBigInteger
(BigIntSchema schema) Returns a specification that validates that the JSON is an object, and the value of each key is a big integer that satisfies the given schema.