Merge "Add a method to import one bigram and string utilities"

main
Satoshi Kataoka 2013-08-14 10:29:06 +00:00 committed by Android (Google) Code Review
commit 92038bcacd
2 changed files with 21 additions and 1 deletions

View File

@ -70,7 +70,17 @@ public abstract class PersonalizationDictionaryUpdateSession {
unsetPredictionDictionary();
}
public void addToPersonalizationDictionary(
public void addBigramToPersonalizationDictionary(String word0, String word1, boolean isValid,
int frequency) {
final DynamicPredictionDictionaryBase dictionary = getPredictionDictionary();
if (dictionary == null) {
return;
}
dictionary.addToPersonalizationPredictionDictionary(word0, word1, isValid);
}
// Bulk import
public void addBigramsToPersonalizationDictionary(
final ArrayList<PersonalizationLanguageModelParam> lmParams) {
final DynamicPredictionDictionaryBase dictionary = getPredictionDictionary();
if (dictionary == null) {

View File

@ -345,4 +345,14 @@ public final class StringUtils {
// Otherwise, it doesn't look like an URL.
return false;
}
public static boolean isEmptyStringOrWhiteSpaces(String s) {
final int N = codePointCount(s);
for (int i = 0; i < N; ++i) {
if (!Character.isWhitespace(s.codePointAt(i))) {
return false;
}
}
return true;
}
}