Files
iTartanas/itranvias_code/com/google/android.gms/common/data/DataBufferIterator.java
T

37 lines
1.2 KiB
Java

package com.google.android.gms.common.data;
import com.google.android.gms.common.internal.Preconditions;
import java.util.Iterator;
import java.util.NoSuchElementException;
/* JADX INFO: compiled from: com.google.android.gms:play-services-base@@18.4.0 */
/* JADX INFO: loaded from: classes2.dex */
public class DataBufferIterator<T> implements Iterator<T> {
protected final DataBuffer zaa;
protected int zab = -1;
public DataBufferIterator(DataBuffer dataBuffer) {
this.zaa = (DataBuffer) Preconditions.checkNotNull(dataBuffer);
}
@Override // java.util.Iterator
public final boolean hasNext() {
return this.zab < this.zaa.getCount() + (-1);
}
@Override // java.util.Iterator
public Object next() {
if (hasNext()) {
DataBuffer dataBuffer = this.zaa;
int i = this.zab + 1;
this.zab = i;
return dataBuffer.get(i);
}
throw new NoSuchElementException("Cannot advance the iterator beyond " + this.zab);
}
@Override // java.util.Iterator
public final void remove() {
throw new UnsupportedOperationException("Cannot remove elements from a DataBufferIterator");
}
}