blob: ce310e6c0272a1e7342257d2caa148354527126b [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.support.v4.os;
import static android.support.annotation.RestrictTo.Scope.LIBRARY_GROUP;
import android.support.annotation.IntRange;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.annotation.RestrictTo;
import java.util.Locale;
/**
* Interface describing backwards-compatible LocaleList APIs.
*
* @hide Internal use only
*/
@RestrictTo(LIBRARY_GROUP)
interface LocaleListInterface {
void setLocaleList(@NonNull Locale... list);
Object getLocaleList();
Locale get(int index);
boolean isEmpty();
@IntRange(from = 0)
int size();
@IntRange(from = -1)
int indexOf(Locale locale);
@Override
boolean equals(Object other);
@Override
int hashCode();
@Override
String toString();
String toLanguageTags();
@Nullable
Locale getFirstMatch(String[] supportedLocales);
}