mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
90 lines
2.2 KiB
Java
90 lines
2.2 KiB
Java
package kotlin.jvm.internal;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class Ref {
|
|
private Ref() {
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class ObjectRef<T> implements Serializable {
|
|
public T element;
|
|
|
|
public String toString() {
|
|
return String.valueOf(this.element);
|
|
}
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class ByteRef implements Serializable {
|
|
public byte element;
|
|
|
|
public String toString() {
|
|
return String.valueOf((int) this.element);
|
|
}
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class ShortRef implements Serializable {
|
|
public short element;
|
|
|
|
public String toString() {
|
|
return String.valueOf((int) this.element);
|
|
}
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class IntRef implements Serializable {
|
|
public int element;
|
|
|
|
public String toString() {
|
|
return String.valueOf(this.element);
|
|
}
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class LongRef implements Serializable {
|
|
public long element;
|
|
|
|
public String toString() {
|
|
return String.valueOf(this.element);
|
|
}
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class FloatRef implements Serializable {
|
|
public float element;
|
|
|
|
public String toString() {
|
|
return String.valueOf(this.element);
|
|
}
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class DoubleRef implements Serializable {
|
|
public double element;
|
|
|
|
public String toString() {
|
|
return String.valueOf(this.element);
|
|
}
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class CharRef implements Serializable {
|
|
public char element;
|
|
|
|
public String toString() {
|
|
return String.valueOf(this.element);
|
|
}
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class BooleanRef implements Serializable {
|
|
public boolean element;
|
|
|
|
public String toString() {
|
|
return String.valueOf(this.element);
|
|
}
|
|
}
|
|
}
|