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 JsStr
JsStr. map(UnaryOperator<String> fn)
Maps this JsStr into another one.static JsStr
JsStr. of(String str)
Static factory method to create a JsStr from a string.default JsStr
JsValue. toJsStr()
Methods in jsonvalues with parameters of type JsStr Modifier and Type Method Description int
JsStr. compareTo(JsStr o)
Compares twoJsStr
objects 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. alphabetic
Generates a alphabetic string where the length is between [0-10]static JsGen<JsStr>
JsGens. alphanumeric
Generates a alphanumeric string where the length is between [0-10]static JsGen<JsStr>
JsGens. character
Generates character from 0-255static JsGen<JsStr>
JsGens. characterAlpha
Generates character from 65-122static JsGen<JsStr>
JsGens. digit
Generates a digit from 0-9static JsGen<JsStr>
JsGens. letter
Generates a letter from a-zstatic JsGen<JsStr>
JsGens. str
Generates 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
-