- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
29 lines
545 B
Java
29 lines
545 B
Java
package androidx.datastore.preferences.protobuf;
|
|
|
|
import androidx.datastore.preferences.protobuf.Value;
|
|
|
|
/* loaded from: classes.dex */
|
|
public interface ValueOrBuilder extends MessageLiteOrBuilder {
|
|
boolean getBoolValue();
|
|
|
|
Value.KindCase getKindCase();
|
|
|
|
ListValue getListValue();
|
|
|
|
NullValue getNullValue();
|
|
|
|
int getNullValueValue();
|
|
|
|
double getNumberValue();
|
|
|
|
String getStringValue();
|
|
|
|
ByteString getStringValueBytes();
|
|
|
|
Struct getStructValue();
|
|
|
|
boolean hasListValue();
|
|
|
|
boolean hasStructValue();
|
|
}
|