- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
10 lines
232 B
Java
10 lines
232 B
Java
package com.google.gson;
|
|
|
|
import com.google.gson.stream.JsonReader;
|
|
import java.io.IOException;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public interface ToNumberStrategy {
|
|
Number readNumber(JsonReader jsonReader) throws IOException;
|
|
}
|