Uses of Class
jsonvalues.JsInstant
-
Packages that use JsInstant 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 JsInstant in jsonvalues
Methods in jsonvalues that return JsInstant Modifier and Type Method Description JsInstant
JsInstant. map(java.util.function.Function<java.time.Instant,java.time.Instant> fn)
static JsInstant
JsInstant. of(java.time.Instant instant)
default JsInstant
JsValue. toJsInstant()
Methods in jsonvalues with parameters of type JsInstant Modifier and Type Method Description int
JsInstant. compareTo(JsInstant o)
-
Uses of JsInstant in jsonvalues.gen
Fields in jsonvalues.gen with type parameters of type JsInstant Modifier and Type Field Description static JsGen<JsInstant>
JsGens. date
Generates an instant betweeny Instant#MAX
Methods in jsonvalues.gen that return types with arguments of type JsInstant Modifier and Type Method Description static JsGen<JsInstant>
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<JsInstant>
JsGens. dateBetween(java.time.ZonedDateTime min, java.time.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.
-