35 lines
1.1 KiB
Java
35 lines
1.1 KiB
Java
![]() |
/* GENERATED SOURCE. DO NOT MODIFY. */
|
||
|
// © 2016 and later: Unicode, Inc. and others.
|
||
|
// License & terms of use: http://www.unicode.org/copyright.html
|
||
|
/*
|
||
|
*******************************************************************************
|
||
|
* Copyright (C) 2009-2014, International Business Machines Corporation and *
|
||
|
* others. All Rights Reserved. *
|
||
|
*******************************************************************************
|
||
|
*/
|
||
|
|
||
|
package android.icu.text;
|
||
|
|
||
|
import android.icu.util.ULocale;
|
||
|
|
||
|
/**
|
||
|
* A provider for an RbnfLenientScanner.
|
||
|
*
|
||
|
* @deprecated ICU 54
|
||
|
* @hide Only a subset of ICU is exposed in Android
|
||
|
*/
|
||
|
@Deprecated
|
||
|
public interface RbnfLenientScannerProvider {
|
||
|
/**
|
||
|
* Returns a scanner appropriate for the given locale, with optional extra data.
|
||
|
* in the form of collation rules.
|
||
|
*
|
||
|
* @param locale the locale to provide the default lenient rules.
|
||
|
* @param extras extra collation rules
|
||
|
* @return the lenient scanner, or null
|
||
|
* @deprecated ICU 54
|
||
|
*/
|
||
|
@Deprecated
|
||
|
RbnfLenientScanner get(ULocale locale, String extras);
|
||
|
}
|