Uses of Class
jsonvalues.JsStr
-
Packages that use JsStr Package Description jsonvalues json-values is a one-package and zero-dependency library to work with jsons in a declarative and functional way.jsonvalues.gen -
-
Uses of JsStr in jsonvalues
Methods in jsonvalues that return JsStr Modifier and Type Method Description JsStrJsStr. map(UnaryOperator<String> fn)Maps this JsStr into another one.static JsStrJsStr. of(String str)Static factory method to create a JsStr from a string.default JsStrJsValue. toJsStr()Methods in jsonvalues with parameters of type JsStr Modifier and Type Method Description intJsStr. compareTo(JsStr o)Compares twoJsStrobjects lexicographically. -
Uses of JsStr in jsonvalues.gen
Fields in jsonvalues.gen with type parameters of type JsStr Modifier and Type Field Description static JsGen<JsStr>JsGens. alphabeticGenerates a alphabetic string where the length is between [0-10]static JsGen<JsStr>JsGens. alphanumericGenerates a alphanumeric string where the length is between [0-10]static JsGen<JsStr>JsGens. characterGenerates character from 0-255static JsGen<JsStr>JsGens. characterAlphaGenerates character from 65-122static JsGen<JsStr>JsGens. digitGenerates a digit from 0-9static JsGen<JsStr>JsGens. letterGenerates a letter from a-zstatic JsGen<JsStr>JsGens. strGenerates a string where the length is between [0-10]Methods in jsonvalues.gen that return types with arguments of type JsStr Modifier and Type Method Description static JsGen<JsStr>JsGens. alphabetic(int length)Generates an alphabetic string of the given lengthstatic JsGen<JsStr>JsGens. alphanumeric(int length)Generates an alphanumeric string of the given lengthstatic JsGen<JsStr>JsGens. dateBetween(long min, long max)generates an instant in UTC formatted with the ISO instant formatter (such as '2011-12-03T10:15:30Z'), between an interval given by two instants converted to the number of seconds from the epoch of 1970-01-01T00:00:00Z.static JsGen<JsStr>JsGens. dateBetween(ZonedDateTime min, ZonedDateTime max)generates an instant in UTC formatted with the ISO instant formatter (such as '2011-12-03T10:15:30Z'), between an interval given by two date-time with a time-zone.static JsGen<JsStr>JsGens. digits(int length)Generates a seq of digits of the given lengthstatic JsGen<JsStr>JsGens. str(int length)Generates an alphabetic string of the given length
-