- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
21 lines
474 B
Java
21 lines
474 B
Java
package com.google.common.base;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public abstract class Optional implements Serializable {
|
|
private static final long serialVersionUID = 0;
|
|
|
|
public abstract Object get();
|
|
|
|
public abstract boolean isPresent();
|
|
|
|
public static Optional absent() {
|
|
return Absent.withType();
|
|
}
|
|
|
|
public static Optional of(Object obj) {
|
|
return new Present(Preconditions.checkNotNull(obj));
|
|
}
|
|
}
|