68 lines
1.4 KiB
Java
68 lines
1.4 KiB
Java
package com.google.zxing.client.result;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class WifiParsedResult extends ParsedResult {
|
|
private final String b;
|
|
private final String c;
|
|
private final String d;
|
|
private final boolean e;
|
|
private final String f;
|
|
private final String g;
|
|
private final String h;
|
|
private final String i;
|
|
|
|
public WifiParsedResult(String str, String str2, String str3, boolean z, String str4, String str5, String str6, String str7) {
|
|
super(ParsedResultType.WIFI);
|
|
this.b = str2;
|
|
this.c = str;
|
|
this.d = str3;
|
|
this.e = z;
|
|
this.f = str4;
|
|
this.g = str5;
|
|
this.h = str6;
|
|
this.i = str7;
|
|
}
|
|
|
|
@Override // com.google.zxing.client.result.ParsedResult
|
|
public String a() {
|
|
StringBuilder sb = new StringBuilder(80);
|
|
ParsedResult.a(this.b, sb);
|
|
ParsedResult.a(this.c, sb);
|
|
ParsedResult.a(this.d, sb);
|
|
ParsedResult.a(Boolean.toString(this.e), sb);
|
|
return sb.toString();
|
|
}
|
|
|
|
public String c() {
|
|
return this.g;
|
|
}
|
|
|
|
public String d() {
|
|
return this.h;
|
|
}
|
|
|
|
public String e() {
|
|
return this.f;
|
|
}
|
|
|
|
public String f() {
|
|
return this.c;
|
|
}
|
|
|
|
public String g() {
|
|
return this.d;
|
|
}
|
|
|
|
public String h() {
|
|
return this.i;
|
|
}
|
|
|
|
public String i() {
|
|
return this.b;
|
|
}
|
|
|
|
public boolean j() {
|
|
return this.e;
|
|
}
|
|
}
|