what-the-bank/sources/com/google/firebase/encoders/ObjectEncoderContext.java

15 lines
426 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.google.firebase.encoders;
import java.io.IOException;
/* loaded from: classes.dex */
public interface ObjectEncoderContext {
ObjectEncoderContext add(String str, int i) throws IOException;
ObjectEncoderContext add(String str, long j) throws IOException;
ObjectEncoderContext add(String str, Object obj) throws IOException;
ObjectEncoderContext add(String str, boolean z) throws IOException;
}