Uses of Class
jsonvalues.spec.LongSchema
Packages that use LongSchema
Package
Description
The `jsonvalues.spec` package provides classes and interfaces for defining and working with JSON specifications
(specs) and parsers.
-
Uses of LongSchema in jsonvalues.spec
Methods in jsonvalues.spec that return LongSchemaModifier and TypeMethodDescriptionstatic LongSchema
LongSchema.between
(long minimum, long maximum) Creates a LongSchema with both minimum and maximum constraints.static LongSchema
LongSchema.withMaximum
(long maximum) Creates a LongSchema with a maximum constraint.static LongSchema
LongSchema.withMinimum
(long minimum) Creates a LongSchema with a minimum constraint.Methods in jsonvalues.spec with parameters of type LongSchemaModifier and TypeMethodDescriptionstatic JsArraySpec
JsSpecs.arrayOfLong
(LongSchema schema) non-nullable array of long numbers.static JsArraySpec
JsSpecs.arrayOfLong
(LongSchema schema, ArraySchema arraySchema) non-nullable array of long numbers.static JsSpec
JsSpecs.longInteger
(LongSchema schema) Returns a specification for a non-nullable long number that satisfies the given schema.