- 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
58 lines
1.6 KiB
Java
58 lines
1.6 KiB
Java
package kotlin.jvm.internal;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public final class FloatCompanionObject {
|
|
public static final FloatCompanionObject INSTANCE = new FloatCompanionObject();
|
|
public static final float MAX_VALUE = Float.MAX_VALUE;
|
|
public static final float MIN_VALUE = Float.MIN_VALUE;
|
|
public static final float NEGATIVE_INFINITY = Float.NEGATIVE_INFINITY;
|
|
public static final float NaN = Float.NaN;
|
|
public static final float POSITIVE_INFINITY = Float.POSITIVE_INFINITY;
|
|
public static final int SIZE_BITS = 32;
|
|
public static final int SIZE_BYTES = 4;
|
|
|
|
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 float getMAX_VALUE() {
|
|
return Float.MAX_VALUE;
|
|
}
|
|
|
|
public final float getMIN_VALUE() {
|
|
return Float.MIN_VALUE;
|
|
}
|
|
|
|
public final float getNEGATIVE_INFINITY() {
|
|
return Float.NEGATIVE_INFINITY;
|
|
}
|
|
|
|
public final float getNaN() {
|
|
return Float.NaN;
|
|
}
|
|
|
|
public final float getPOSITIVE_INFINITY() {
|
|
return Float.POSITIVE_INFINITY;
|
|
}
|
|
|
|
private FloatCompanionObject() {
|
|
}
|
|
}
|