45 lines
1.1 KiB
Java
45 lines
1.1 KiB
Java
package com.google.zxing.client.result;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class SMSParsedResult extends ParsedResult {
|
|
private final String[] b;
|
|
private final String c;
|
|
private final String d;
|
|
|
|
public SMSParsedResult(String str, String str2, String str3, String str4) {
|
|
super(ParsedResultType.SMS);
|
|
this.b = new String[]{str};
|
|
new String[1][0] = str2;
|
|
this.c = str3;
|
|
this.d = str4;
|
|
}
|
|
|
|
@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);
|
|
return sb.toString();
|
|
}
|
|
|
|
public String c() {
|
|
return this.d;
|
|
}
|
|
|
|
public String[] d() {
|
|
return this.b;
|
|
}
|
|
|
|
public String e() {
|
|
return this.c;
|
|
}
|
|
|
|
public SMSParsedResult(String[] strArr, String[] strArr2, String str, String str2) {
|
|
super(ParsedResultType.SMS);
|
|
this.b = strArr;
|
|
this.c = str;
|
|
this.d = str2;
|
|
}
|
|
}
|