jimu-decompiled/sources/com/google/android/gms/common/internal/Preconditions.java
2025-05-13 19:24:51 +02:00

96 lines
2.4 KiB
Java

package com.google.android.gms.common.internal;
import android.os.Handler;
import android.os.Looper;
import android.text.TextUtils;
/* loaded from: classes.dex */
public final class Preconditions {
public static <T> T a(T t) {
if (t != null) {
return t;
}
throw new NullPointerException("null reference");
}
public static String b(String str) {
if (TextUtils.isEmpty(str)) {
throw new IllegalArgumentException("Given String is empty or null");
}
return str;
}
public static void c(String str) {
if (com.google.android.gms.common.util.zzc.a()) {
throw new IllegalStateException(str);
}
}
public static String a(String str, Object obj) {
if (TextUtils.isEmpty(str)) {
throw new IllegalArgumentException(String.valueOf(obj));
}
return str;
}
public static void b(boolean z) {
if (!z) {
throw new IllegalStateException();
}
}
public static <T> T a(T t, Object obj) {
if (t != null) {
return t;
}
throw new NullPointerException(String.valueOf(obj));
}
public static void b(boolean z, Object obj) {
if (!z) {
throw new IllegalStateException(String.valueOf(obj));
}
}
public static int a(int i) {
if (i != 0) {
return i;
}
throw new IllegalArgumentException("Given Integer is zero");
}
public static void a(boolean z, String str, Object... objArr) {
if (!z) {
throw new IllegalStateException(String.format(str, objArr));
}
}
public static void a(boolean z, Object obj) {
if (!z) {
throw new IllegalArgumentException(String.valueOf(obj));
}
}
public static void a(boolean z) {
if (!z) {
throw new IllegalArgumentException();
}
}
public static void a(String str) {
if (!com.google.android.gms.common.util.zzc.a()) {
throw new IllegalStateException(str);
}
}
public static void a() {
c("Must not be called on the main application thread");
}
public static void a(Handler handler) {
if (Looper.myLooper() != handler.getLooper()) {
throw new IllegalStateException("Must be called on the handler thread");
}
}
}