Files
adif-api-reverse-engineering/apk_decompiled/sources/com/google/firebase/remoteconfig/FirebaseRemoteConfigValue.java

17 lines
360 B
Java

package com.google.firebase.remoteconfig;
/* loaded from: classes3.dex */
public interface FirebaseRemoteConfigValue {
boolean asBoolean() throws IllegalArgumentException;
byte[] asByteArray();
double asDouble() throws IllegalArgumentException;
long asLong() throws IllegalArgumentException;
String asString();
int getSource();
}