blob: ff02570e721389ed64d78431997520988209fde0 [file] [log] [blame]
// Copyright (c) 2019, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package j$.time;
public final class ZonedDateTime {
public static ZonedDateTime of(
int year,
int month,
int dayOfMonth,
int hour,
int minute,
int second,
int nanoOfSecond,
ZoneId zone) {
return null;
}
public int getYear() {
return 0;
}
public int getMonthValue() {
return 0;
}
public int getDayOfMonth() {
return 0;
}
public int getHour() {
return 0;
}
public int getMinute() {
return 0;
}
public int getSecond() {
return 0;
}
public int getNano() {
return 0;
}
public j$.time.ZoneId getZone() {
return null;
}
}