Uses of Class
jsonvalues.JsStr
Packages that use JsStr
Package
Description
This package includes all the classes to represents, create and manipulate JSON
this package includes all the JSON generators
-
Uses of JsStr in jsonvalues
Methods in jsonvalues that return JsStrModifier and TypeMethodDescriptionJsStr.map(UnaryOperator<String> fn) Maps this JsStr into another one.static JsStrStatic factory method to create a JsStr from a string.default JsStrJsValue.toJsStr()Returns this JsValue as a JsStrMethods in jsonvalues with parameters of type JsStr -
Uses of JsStr in jsonvalues.gen
Methods in jsonvalues.gen that return types with arguments of type JsStrModifier and TypeMethodDescriptionstatic fun.gen.Gen<JsStr>JsStrGen.alphabetic()Generator tha produces an alphabetic characterstatic fun.gen.Gen<JsStr>JsStrGen.alphabetic(int length) Generates a string made up of alphabetic charactersstatic fun.gen.Gen<JsStr>JsStrGen.alphabetic(int minLength, int maxLength) Generates a string made up of alphabetic charactersstatic fun.gen.Gen<JsStr>JsStrGen.alphanumeric()Generator tha produces an alphanumeric characterstatic fun.gen.Gen<JsStr>JsStrGen.alphanumeric(int length) Generates a string made up of alphanumeric charactersstatic fun.gen.Gen<JsStr>JsStrGen.alphanumeric(int minLength, int maxLength) Generates a string made up of alphanumeric charactersReturns a supplier from the specified seed that generates a new JsStr each time it's calledstatic fun.gen.Gen<JsStr>JsStrGen.arbitrary(int length) returns a generator that produces arbitrary stringsstatic fun.gen.Gen<JsStr>JsStrGen.arbitrary(int minLength, int maxLength) returns a generator that produces arbitrary stringsstatic fun.gen.Gen<JsStr>JsStrGen.biased(int length) returns a biased generators that produces, with higher probability, potential problematic values that usually cause more bugs.static fun.gen.Gen<JsStr>JsStrGen.biased(int minLength, int maxLength) returns a biased generators that produces, with higher probability, potential problematic values that usually cause more bugs.static fun.gen.Gen<JsStr>JsStrGen.digit()Generator tha produces a digit from 0 to 9static fun.gen.Gen<JsStr>JsStrGen.digits(int length) Generates a string made up of digitsstatic fun.gen.Gen<JsStr>JsStrGen.digits(int minLength, int maxLength) Generates a string made up of digitsstatic fun.gen.Gen<JsStr>JsStrGen.letter()Generator tha produces a letter from a to zstatic fun.gen.Gen<JsStr>JsStrGen.letters(int length) Generates a string made up of lettersstatic fun.gen.Gen<JsStr>JsStrGen.letters(int minLength, int maxLength) Generates a string made up of letters