am 92038bca: Merge "Add a method to import one bigram and string utilities"
* commit '92038bcacd5210c667e67f7046a6675e085868b6': Add a method to import one bigram and string utilitiesmain
commit
72d7af4f4c
|
@ -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) {
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue