]> gitweb.fperrin.net Git - DictionaryPC.git/blob - src/com/hughes/android/dictionary/CollatorWrapper.java
Minor automated code simplifications.
[DictionaryPC.git] / src / com / hughes / android / dictionary / CollatorWrapper.java
1 // Copyright 2017 Reimar Döffinger
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //     http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 package com.hughes.android.dictionary;
16
17 import java.util.Locale;
18
19 import com.ibm.icu.text.Collator;
20
21 public final class CollatorWrapper {
22 public static Collator getInstance() {
23     return Collator.getInstance();
24 }
25 public static Collator getInstanceStrengthIdentical(Locale l) {
26     Collator c = Collator.getInstance(l);
27     c.setStrength(Collator.IDENTICAL);
28     return c;
29 }
30 }