discord-jadx/app/src/main/java/androidx/core/os/LocaleListInterface.java

25 lines
475 B
Java

package androidx.core.os;
import androidx.annotation.IntRange;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import java.util.Locale;
public interface LocaleListInterface {
Locale get(int i);
@Nullable
Locale getFirstMatch(@NonNull String[] strArr);
Object getLocaleList();
@IntRange(from = -1)
int indexOf(Locale locale);
boolean isEmpty();
@IntRange(from = 0)
int size();
String toLanguageTags();
}