what-the-bank/sources/com/google/android/gms/internal/clearcut/zzee.java

42 lines
1.1 KiB
Java

package com.google.android.gms.internal.clearcut;
/* loaded from: classes2.dex */
final class zzee {
private final String info;
private int position = 0;
/* JADX INFO: Access modifiers changed from: package-private */
public final int next() {
String str = this.info;
int i = this.position;
this.position = i + 1;
char charAt = str.charAt(i);
if (charAt < 55296) {
return charAt;
}
int i2 = charAt & 8191;
int i3 = 13;
while (true) {
String str2 = this.info;
int i4 = this.position;
this.position = i4 + 1;
char charAt2 = str2.charAt(i4);
if (charAt2 < 55296) {
return i2 | (charAt2 << i3);
}
i2 |= (charAt2 & 8191) << i3;
i3 += 13;
}
}
/* JADX INFO: Access modifiers changed from: package-private */
public final boolean hasNext() {
return this.position < this.info.length();
}
/* JADX INFO: Access modifiers changed from: package-private */
public zzee(String str) {
this.info = str;
}
}