| // Copyright (c) 2023, 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 class LocalDateTime { |
| public static LocalDateTime of( |
| int year, int month, int dayOfMonth, int hour, int minute, int second, int nano) { |
| 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; |
| } |
| } |