- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
58 lines
1.6 KiB
Java
58 lines
1.6 KiB
Java
package kotlin.jvm.internal;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public final class DoubleCompanionObject {
|
|
public static final DoubleCompanionObject INSTANCE = new DoubleCompanionObject();
|
|
public static final double MAX_VALUE = Double.MAX_VALUE;
|
|
public static final double MIN_VALUE = Double.MIN_VALUE;
|
|
public static final double NEGATIVE_INFINITY = Double.NEGATIVE_INFINITY;
|
|
public static final double NaN = Double.NaN;
|
|
public static final double POSITIVE_INFINITY = Double.POSITIVE_INFINITY;
|
|
public static final int SIZE_BITS = 64;
|
|
public static final int SIZE_BYTES = 8;
|
|
|
|
public static /* synthetic */ void getMAX_VALUE$annotations() {
|
|
}
|
|
|
|
public static /* synthetic */ void getMIN_VALUE$annotations() {
|
|
}
|
|
|
|
public static /* synthetic */ void getNEGATIVE_INFINITY$annotations() {
|
|
}
|
|
|
|
public static /* synthetic */ void getNaN$annotations() {
|
|
}
|
|
|
|
public static /* synthetic */ void getPOSITIVE_INFINITY$annotations() {
|
|
}
|
|
|
|
public static /* synthetic */ void getSIZE_BITS$annotations() {
|
|
}
|
|
|
|
public static /* synthetic */ void getSIZE_BYTES$annotations() {
|
|
}
|
|
|
|
public final double getMAX_VALUE() {
|
|
return Double.MAX_VALUE;
|
|
}
|
|
|
|
public final double getMIN_VALUE() {
|
|
return Double.MIN_VALUE;
|
|
}
|
|
|
|
public final double getNEGATIVE_INFINITY() {
|
|
return Double.NEGATIVE_INFINITY;
|
|
}
|
|
|
|
public final double getNaN() {
|
|
return Double.NaN;
|
|
}
|
|
|
|
public final double getPOSITIVE_INFINITY() {
|
|
return Double.POSITIVE_INFINITY;
|
|
}
|
|
|
|
private DoubleCompanionObject() {
|
|
}
|
|
}
|