MCPcopy Create free account
hub / github.com/MenoData/Time4J / atTime

Method atTime

base/src/main/java/net/time4j/PlainDate.java:1144–1151  ·  view source on GitHub ↗
(
        int hour,
        int minute
    )

Source from the content-addressed store, hash-verified

1142 * @throws IllegalArgumentException if any argument is out of range
1143 */
1144 public PlainTimestamp atTime(
1145 int hour,
1146 int minute
1147 ) {
1148
1149 return this.at(PlainTime.of(hour, minute));
1150
1151 }
1152
1153 /**
1154 * <p>Is equivalent to {@code at(PlainTime.of(hour, minute, second))}. </p>

Callers 5

startOfDayNormalMethod · 0.95
applyMethod · 0.45

Calls 2

atMethod · 0.95
ofMethod · 0.95