134 lines
3.3 KiB
Java
134 lines
3.3 KiB
Java
package com.google.zxing.client.result;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class AddressBookParsedResult extends ParsedResult {
|
|
private final String[] b;
|
|
private final String[] c;
|
|
private final String d;
|
|
private final String[] e;
|
|
private final String[] f;
|
|
private final String[] g;
|
|
private final String[] h;
|
|
private final String i;
|
|
private final String j;
|
|
private final String[] k;
|
|
private final String[] l;
|
|
private final String m;
|
|
private final String n;
|
|
private final String o;
|
|
private final String[] p;
|
|
private final String[] q;
|
|
|
|
public AddressBookParsedResult(String[] strArr, String[] strArr2, String str, String[] strArr3, String[] strArr4, String[] strArr5, String[] strArr6, String str2, String str3, String[] strArr7, String[] strArr8, String str4, String str5, String str6, String[] strArr9, String[] strArr10) {
|
|
super(ParsedResultType.ADDRESSBOOK);
|
|
if (strArr3 != null && strArr4 != null && strArr3.length != strArr4.length) {
|
|
throw new IllegalArgumentException("Phone numbers and types lengths differ");
|
|
}
|
|
if (strArr5 != null && strArr6 != null && strArr5.length != strArr6.length) {
|
|
throw new IllegalArgumentException("Emails and types lengths differ");
|
|
}
|
|
if (strArr7 != null && strArr8 != null && strArr7.length != strArr8.length) {
|
|
throw new IllegalArgumentException("Addresses and types lengths differ");
|
|
}
|
|
this.b = strArr;
|
|
this.c = strArr2;
|
|
this.d = str;
|
|
this.e = strArr3;
|
|
this.f = strArr4;
|
|
this.g = strArr5;
|
|
this.h = strArr6;
|
|
this.i = str2;
|
|
this.j = str3;
|
|
this.k = strArr7;
|
|
this.l = strArr8;
|
|
this.m = str4;
|
|
this.n = str5;
|
|
this.o = str6;
|
|
this.p = strArr9;
|
|
this.q = strArr10;
|
|
}
|
|
|
|
@Override // com.google.zxing.client.result.ParsedResult
|
|
public String a() {
|
|
StringBuilder sb = new StringBuilder(100);
|
|
ParsedResult.a(this.b, sb);
|
|
ParsedResult.a(this.c, sb);
|
|
ParsedResult.a(this.d, sb);
|
|
ParsedResult.a(this.o, sb);
|
|
ParsedResult.a(this.m, sb);
|
|
ParsedResult.a(this.k, sb);
|
|
ParsedResult.a(this.e, sb);
|
|
ParsedResult.a(this.g, sb);
|
|
ParsedResult.a(this.i, sb);
|
|
ParsedResult.a(this.p, sb);
|
|
ParsedResult.a(this.n, sb);
|
|
ParsedResult.a(this.q, sb);
|
|
ParsedResult.a(this.j, sb);
|
|
return sb.toString();
|
|
}
|
|
|
|
public String[] c() {
|
|
return this.l;
|
|
}
|
|
|
|
public String[] d() {
|
|
return this.k;
|
|
}
|
|
|
|
public String e() {
|
|
return this.n;
|
|
}
|
|
|
|
public String[] f() {
|
|
return this.h;
|
|
}
|
|
|
|
public String[] g() {
|
|
return this.g;
|
|
}
|
|
|
|
public String[] h() {
|
|
return this.q;
|
|
}
|
|
|
|
public String i() {
|
|
return this.i;
|
|
}
|
|
|
|
public String[] j() {
|
|
return this.b;
|
|
}
|
|
|
|
public String[] k() {
|
|
return this.c;
|
|
}
|
|
|
|
public String l() {
|
|
return this.j;
|
|
}
|
|
|
|
public String m() {
|
|
return this.m;
|
|
}
|
|
|
|
public String[] n() {
|
|
return this.e;
|
|
}
|
|
|
|
public String[] o() {
|
|
return this.f;
|
|
}
|
|
|
|
public String p() {
|
|
return this.d;
|
|
}
|
|
|
|
public String q() {
|
|
return this.o;
|
|
}
|
|
|
|
public String[] r() {
|
|
return this.p;
|
|
}
|
|
}
|