discord-jadx/app/src/main/java/c/g/a/a/b.java
2021-07-24 04:37:17 +02:00

69 lines
2.2 KiB
Java

package c.g.a.a;
import java.io.Serializable;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/* compiled from: JacksonInject */
@Target({ElementType.ANNOTATION_TYPE, ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
public @interface b {
/* compiled from: JacksonInject */
public static class a implements Serializable {
public static final a i = new a(null, null);
private static final long serialVersionUID = 1;
public final Object _id;
public final Boolean _useInput;
public a(Object obj, Boolean bool) {
this._id = obj;
this._useInput = bool;
}
public static a a(Object obj, Boolean bool) {
if ("".equals(obj)) {
obj = null;
}
return obj == null && bool == null ? i : new a(obj, bool);
}
@Override // java.lang.Object
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (obj != null && obj.getClass() == a.class) {
a aVar = (a) obj;
Boolean bool = this._useInput;
Boolean bool2 = aVar._useInput;
if (bool == null ? bool2 == null : bool.equals(bool2)) {
Object obj2 = this._id;
return obj2 == null ? aVar._id == null : obj2.equals(aVar._id);
}
}
return false;
}
@Override // java.lang.Object
public int hashCode() {
Object obj = this._id;
int i2 = 1;
if (obj != null) {
i2 = 1 + obj.hashCode();
}
Boolean bool = this._useInput;
return bool != null ? i2 + bool.hashCode() : i2;
}
@Override // java.lang.Object
public String toString() {
return String.format("JacksonInject.Value(id=%s,useInput=%s)", this._id, this._useInput);
}
}
m0 useInput() default m0.DEFAULT;
String value() default "";
}