• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* GENERATED SOURCE. DO NOT MODIFY. */
2 // © 2016 and later: Unicode, Inc. and others.
3 // License & terms of use: http://www.unicode.org/copyright.html#License
4 /*
5  *******************************************************************************
6  * Copyright (C) 2009-2014, International Business Machines Corporation and    *
7  * others. All Rights Reserved.                                                *
8  *******************************************************************************
9  */
10 
11 package ohos.global.icu.text;
12 
13 import ohos.global.icu.util.ULocale;
14 
15 /**
16  * A provider for an RbnfLenientScanner.
17  *
18  * @deprecated ICU 54
19  * @hide exposed on OHOS
20  */
21 @Deprecated
22 public interface RbnfLenientScannerProvider {
23     /**
24      * Returns a scanner appropriate for the given locale, with optional extra data.
25      * in the form of collation rules.
26      *
27      * @param locale the locale to provide the default lenient rules.
28      * @param extras extra collation rules
29      * @return the lenient scanner, or null
30      * @deprecated ICU 54
31      */
32     @Deprecated
get(ULocale locale, String extras)33     RbnfLenientScanner get(ULocale locale, String extras);
34 }