17 lines
360 B
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();
|
|
}
|