- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
48 lines
1.0 KiB
Java
48 lines
1.0 KiB
Java
package com.google.android.gms.games.event;
|
|
|
|
import android.database.CharArrayBuffer;
|
|
import android.net.Uri;
|
|
import android.os.Parcelable;
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.VisibleForTesting;
|
|
import com.google.android.gms.common.annotation.KeepName;
|
|
import com.google.android.gms.common.data.Freezable;
|
|
import com.google.android.gms.games.Player;
|
|
|
|
@VisibleForTesting
|
|
/* loaded from: classes2.dex */
|
|
public interface Event extends Freezable<Event>, Parcelable {
|
|
@NonNull
|
|
String getDescription();
|
|
|
|
void getDescription(@NonNull CharArrayBuffer charArrayBuffer);
|
|
|
|
@NonNull
|
|
String getEventId();
|
|
|
|
@NonNull
|
|
String getFormattedValue();
|
|
|
|
void getFormattedValue(@NonNull CharArrayBuffer charArrayBuffer);
|
|
|
|
@NonNull
|
|
Uri getIconImageUri();
|
|
|
|
@NonNull
|
|
@KeepName
|
|
@Deprecated
|
|
String getIconImageUrl();
|
|
|
|
@NonNull
|
|
String getName();
|
|
|
|
void getName(@NonNull CharArrayBuffer charArrayBuffer);
|
|
|
|
@NonNull
|
|
Player getPlayer();
|
|
|
|
long getValue();
|
|
|
|
boolean isVisible();
|
|
}
|