15 lines
426 B
Java
15 lines
426 B
Java
|
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;
|
||
|
}
|