71 lines
2.1 KiB
Java
71 lines
2.1 KiB
Java
package o;
|
|
|
|
import java.io.ByteArrayInputStream;
|
|
import java.io.ByteArrayOutputStream;
|
|
import java.io.IOException;
|
|
import java.io.NotSerializableException;
|
|
import java.io.ObjectInputStream;
|
|
import java.io.ObjectOutputStream;
|
|
import java.io.Serializable;
|
|
import java.util.Vector;
|
|
|
|
/* renamed from: o.gmQ, reason: case insensitive filesystem */
|
|
/* loaded from: classes6.dex */
|
|
public class C15281gmQ implements Serializable {
|
|
public static final Class a;
|
|
public static final Class c;
|
|
public int f;
|
|
public boolean h;
|
|
public C15281gmQ i;
|
|
public Object k = b;
|
|
public String l;
|
|
public String m;
|
|
protected Object n;
|
|
public static final Class b = new Object().getClass();
|
|
public static final Class j = "".getClass();
|
|
public static final Class d = Boolean.TRUE.getClass();
|
|
public static final Class g = new Vector().getClass();
|
|
public static final C15281gmQ e = new C15281gmQ();
|
|
|
|
static {
|
|
Integer num = 0;
|
|
c = num.getClass();
|
|
Long l = 0L;
|
|
a = l.getClass();
|
|
}
|
|
|
|
public String toString() {
|
|
StringBuffer stringBuffer = new StringBuffer();
|
|
stringBuffer.append(this.m);
|
|
stringBuffer.append(" : ");
|
|
Object obj = this.n;
|
|
if (obj != null) {
|
|
stringBuffer.append(obj);
|
|
} else {
|
|
stringBuffer.append("(not set)");
|
|
}
|
|
return stringBuffer.toString();
|
|
}
|
|
|
|
public Object clone() {
|
|
try {
|
|
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
|
|
ObjectOutputStream objectOutputStream = new ObjectOutputStream(byteArrayOutputStream);
|
|
objectOutputStream.writeObject(this);
|
|
objectOutputStream.flush();
|
|
objectOutputStream.close();
|
|
return new ObjectInputStream(new ByteArrayInputStream(byteArrayOutputStream.toByteArray())).readObject();
|
|
} catch (NotSerializableException | IOException | ClassNotFoundException unused) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public final void a(Object obj) {
|
|
this.n = obj;
|
|
}
|
|
|
|
public final Object c() {
|
|
return this.n;
|
|
}
|
|
}
|