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 LongSchemaLongSchema.between(long minimum, long maximum) Creates a LongSchema with both minimum and maximum constraints.static LongSchemaLongSchema.withMaximum(long maximum) Creates a LongSchema with a maximum constraint.static LongSchemaLongSchema.withMinimum(long minimum) Creates a LongSchema with a minimum constraint.Methods in jsonvalues.spec with parameters of type LongSchemaModifier and TypeMethodDescriptionstatic JsArraySpecJsSpecs.arrayOfLong(LongSchema schema) non-nullable array of long numbers.static JsArraySpecJsSpecs.arrayOfLong(LongSchema schema, ArraySchema arraySchema) non-nullable array of long numbers.static JsSpecJsSpecs.longInteger(LongSchema schema) Returns a specification for a non-nullable long number that satisfies the given schema.