- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
27 lines
363 B
Java
27 lines
363 B
Java
package com.amazonaws.util.json;
|
|
|
|
/* loaded from: classes.dex */
|
|
public interface AwsJsonReader {
|
|
void beginArray();
|
|
|
|
void beginObject();
|
|
|
|
void close();
|
|
|
|
void endArray();
|
|
|
|
void endObject();
|
|
|
|
boolean hasNext();
|
|
|
|
boolean isContainer();
|
|
|
|
String nextName();
|
|
|
|
String nextString();
|
|
|
|
AwsJsonToken peek();
|
|
|
|
void skipValue();
|
|
}
|