Uses of Class
jsonvalues.spec.SpecGenConfBuilder
Packages that use SpecGenConfBuilder
Package
Description
The `jsonvalues.spec` package provides classes and interfaces for defining and working with JSON specifications
(specs) and parsers.
-
Uses of SpecGenConfBuilder in jsonvalues.spec
Methods in jsonvalues.spec that return SpecGenConfBuilderModifier and TypeMethodDescriptionSpecGenConfBuilder.withArraySize
(int minimumSize, int maximumSize) Sets the size range for generated arrays.SpecGenConfBuilder.withBigDecSize
(BigDecimal minimumSize, BigDecimal maximumSize) Sets the size range for generated BigDecimal values.SpecGenConfBuilder.withBigIntSize
(BigInteger minimumSize, BigInteger maximumSize) Sets the size range for generated BigInteger values.SpecGenConfBuilder.withBinaryLength
(int minimumLength, int maximumLength) Sets the length range for generated binary data.SpecGenConfBuilder.withDoubleSize
(double minimumSize, double maximumSize) Sets the size range for generated double values.SpecGenConfBuilder.withInstantRange
(Instant minimumDate, Instant maximumDate) Sets the range for generated Instant values.SpecGenConfBuilder.withIntSize
(int minimumSize, int maximumSize) Sets the size range for generated integers.SpecGenConfBuilder.withKeyLength
(int minimumLength, int maximumLength) Sets the length range for keys in generated json objects.SpecGenConfBuilder.withLongSize
(long minimumSize, long maximumSize) Sets the size range for generated long integers.SpecGenConfBuilder.withNullableKeyProbability
(int probability) Sets the probability of generating nullable objects.SpecGenConfBuilder.withObjSize
(int minimumSize, int maximumSize) Sets the size range for generated json objects.SpecGenConfBuilder.withOptionalKeyProbability
(int probability) Sets the probability of generating optional object fields.SpecGenConfBuilder.withStringLength
(int minimumLength, int maximumLength) Sets the length range for generated strings.Methods in jsonvalues.spec with parameters of type SpecGenConfBuilderModifier and TypeMethodDescriptionstatic SpecToGen
SpecToGen.of
(SpecGenConfBuilder confBuilder) Creates a new instance of theSpecToGen
class with the specified configuration.