blob: c40ec13e53d079467f439d8b8aed42d6dc21d70a [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$.util;
public final class OptionalInt {
public static OptionalInt of(int value) {
return null;
}
public static OptionalInt empty() {
return null;
}
public boolean isPresent() {
return false;
}
public int getAsInt() {
return 0;
}
}