- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
45 lines
1.0 KiB
Java
45 lines
1.0 KiB
Java
package com.google.android.gms.ads;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class AdValue {
|
|
private final int zza;
|
|
private final String zzb;
|
|
private final long zzc;
|
|
|
|
@Retention(RetentionPolicy.SOURCE)
|
|
public @interface PrecisionType {
|
|
public static final int ESTIMATED = 1;
|
|
public static final int PRECISE = 3;
|
|
public static final int PUBLISHER_PROVIDED = 2;
|
|
public static final int UNKNOWN = 0;
|
|
}
|
|
|
|
private AdValue(int i, String str, long j) {
|
|
this.zza = i;
|
|
this.zzb = str;
|
|
this.zzc = j;
|
|
}
|
|
|
|
@NonNull
|
|
public static AdValue zza(int i, @NonNull String str, long j) {
|
|
return new AdValue(i, str, j);
|
|
}
|
|
|
|
@NonNull
|
|
public String getCurrencyCode() {
|
|
return this.zzb;
|
|
}
|
|
|
|
public int getPrecisionType() {
|
|
return this.zza;
|
|
}
|
|
|
|
public long getValueMicros() {
|
|
return this.zzc;
|
|
}
|
|
}
|