MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / ofSeconds

Method ofSeconds

vm/JavaAPI/src/java/time/Duration.java:24–26  ·  view source on GitHub ↗
(long seconds)

Source from the content-addressed store, hash-verified

22 }
23
24 public static Duration ofSeconds(long seconds) {
25 return new Duration(seconds, 0);
26 }
27
28 public static Duration ofSeconds(long seconds, long nanoAdjustment) {
29 long secs = seconds + DateTimeSupport.floorDiv(nanoAdjustment, DateTimeSupport.NANOS_PER_SECOND);

Callers 12

mainMethod · 0.95
runTestMethod · 0.95
executeMethod · 0.95
locateExistingCommentMethod · 0.95
calculateMethod · 0.95
ofDaysMethod · 0.95
ofHoursMethod · 0.95
ofMinutesMethod · 0.95
ofMillisMethod · 0.95
plusMethod · 0.95
minusMethod · 0.95
invokeStatic1Method · 0.45

Calls 2

floorDivMethod · 0.95
floorModMethod · 0.95

Tested by 2

runTestMethod · 0.76
calculateMethod · 0.76