HomeSort by relevance Sort by last modified time
    Searched defs:ofMonths (Results 1 - 3 of 3) sorted by null

  /libcore/ojluni/src/main/java/java/time/
Period.java 188 public static Period ofMonths(int months) {
309 * "P3M" -- Period.ofMonths(3)
    [all...]
  /libcore/ojluni/src/test/java/time/tck/java/time/
TCKPeriod.java 105 // ofMonths(int)
109 assertPeriod(Period.ofMonths(0), 0, 0, 0);
110 assertPeriod(Period.ofMonths(1), 0, 1, 0);
111 assertPeriod(Period.ofMonths(234), 0, 234, 0);
112 assertPeriod(Period.ofMonths(-100), 0, -100, 0);
113 assertPeriod(Period.ofMonths(Integer.MAX_VALUE), 0, Integer.MAX_VALUE, 0);
114 assertPeriod(Period.ofMonths(Integer.MIN_VALUE), 0, Integer.MIN_VALUE, 0);
282 {"P1M", Period.ofMonths(1)},
283 {"P12M", Period.ofMonths(12)},
284 {"P987654321M", Period.ofMonths(987654321)}
    [all...]
  /prebuilts/sdk/current/
core.jar 

Completed in 70 milliseconds