discord-jadx/app/src/main/java/com/esotericsoftware/kryo/Serializer.java

54 lines
1.2 KiB
Java

package com.esotericsoftware.kryo;
import c.d.b.a.a;
import com.esotericsoftware.kryo.io.Input;
import com.esotericsoftware.kryo.io.Output;
public abstract class Serializer<T> {
private boolean acceptsNull;
private boolean immutable;
public Serializer() {
}
public Serializer(boolean z2) {
this.acceptsNull = z2;
}
public Serializer(boolean z2, boolean z3) {
this.acceptsNull = z2;
this.immutable = z3;
}
public T copy(Kryo kryo, T t) {
if (isImmutable()) {
return t;
}
StringBuilder K = a.K("Serializer does not support copy: ");
K.append(getClass().getName());
throw new KryoException(K.toString());
}
public boolean getAcceptsNull() {
return this.acceptsNull;
}
public boolean isImmutable() {
return this.immutable;
}
public abstract T read(Kryo kryo, Input input, Class<T> cls);
public void setAcceptsNull(boolean z2) {
this.acceptsNull = z2;
}
public void setGenerics(Kryo kryo, Class[] clsArr) {
}
public void setImmutable(boolean z2) {
this.immutable = z2;
}
public abstract void write(Kryo kryo, Output output, T t);
}