28 lines
537 B
Java
28 lines
537 B
Java
|
package com.google.android.gms.common.data;
|
||
|
|
||
|
import android.os.Bundle;
|
||
|
import com.google.android.gms.common.api.Releasable;
|
||
|
import java.io.Closeable;
|
||
|
import java.util.Iterator;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public interface DataBuffer<T> extends Iterable<T>, Releasable, Closeable {
|
||
|
void close();
|
||
|
|
||
|
T get(int i);
|
||
|
|
||
|
int getCount();
|
||
|
|
||
|
Bundle getMetadata();
|
||
|
|
||
|
@Deprecated
|
||
|
boolean isClosed();
|
||
|
|
||
|
@Override // java.lang.Iterable
|
||
|
Iterator<T> iterator();
|
||
|
|
||
|
void release();
|
||
|
|
||
|
Iterator<T> singleRefIterator();
|
||
|
}
|