75 lines
1.5 KiB
Java
75 lines
1.5 KiB
Java
|
package o;
|
||
|
|
||
|
import net.sf.scuba.data.Country;
|
||
|
|
||
|
/* renamed from: o.ghQ, reason: case insensitive filesystem */
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class C15107ghQ extends Country {
|
||
|
private String a;
|
||
|
private int b;
|
||
|
private String c;
|
||
|
private String d;
|
||
|
private String e;
|
||
|
|
||
|
static {
|
||
|
new C15107ghQ("UT", "UTO", "Utopia", "Utopian");
|
||
|
}
|
||
|
|
||
|
private C15107ghQ() {
|
||
|
}
|
||
|
|
||
|
private C15107ghQ(String str, String str2, String str3, String str4) {
|
||
|
this.b = -1;
|
||
|
this.d = str;
|
||
|
this.e = str2;
|
||
|
this.a = str3;
|
||
|
this.c = str4;
|
||
|
}
|
||
|
|
||
|
public boolean equals(Object obj) {
|
||
|
if (obj == null) {
|
||
|
return false;
|
||
|
}
|
||
|
if (obj == this) {
|
||
|
return true;
|
||
|
}
|
||
|
if (getClass().equals(obj.getClass())) {
|
||
|
return this.e.equals(((C15107ghQ) obj).e);
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public int hashCode() {
|
||
|
return (this.e.hashCode() << 1) + 31;
|
||
|
}
|
||
|
|
||
|
@Override // net.sf.scuba.data.Country
|
||
|
public int valueOf() {
|
||
|
return this.b;
|
||
|
}
|
||
|
|
||
|
public String toString() {
|
||
|
return this.d;
|
||
|
}
|
||
|
|
||
|
@Override // net.sf.scuba.data.Country
|
||
|
public String toAlpha3Code() {
|
||
|
return this.e;
|
||
|
}
|
||
|
|
||
|
@Override // net.sf.scuba.data.Country
|
||
|
public String toAlpha2Code() {
|
||
|
return this.d;
|
||
|
}
|
||
|
|
||
|
@Override // net.sf.scuba.data.Country
|
||
|
public String getNationality() {
|
||
|
return this.c;
|
||
|
}
|
||
|
|
||
|
@Override // net.sf.scuba.data.Country
|
||
|
public String getName() {
|
||
|
return this.a;
|
||
|
}
|
||
|
}
|