org.languagetool.rules.ConfusionSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of languagetool-core Show documentation
Show all versions of languagetool-core Show documentation
LanguageTool is an Open Source proofreading software for English, French, German, Polish, Romanian, and more than 20 other languages. It finds many errors that a simple spell checker cannot detect like mixing up there/their and it detects some grammar problems.
/* LanguageTool, a natural language style checker
* Copyright (C) 2015 Daniel Naber (http://www.danielnaber.de)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
* USA
*/
package org.languagetool.rules;
import org.languagetool.tools.StringTools;
import java.util.*;
/**
* Words that can easily be confused - for internal use only.
* Even though there can be more words in the set, usually there
* are two, as the factor is specific for this pair of words.
* @since 3.0
*/
public class ConfusionSet {
private final Set set = new HashSet<>();
private final long factor;
/**
* @param factor the factor that one string must be more probable than the other to be considered a correction, must be >= 1
*/
public ConfusionSet(long factor, List confusionStrings) {
if (factor < 1) {
throw new IllegalArgumentException("factor must be >= 1: " + factor);
}
this.factor = factor;
set.addAll(Objects.requireNonNull(confusionStrings));
}
/**
* @param factor the factor that one string must be more probable than the other to be considered a correction, must be >= 1
*/
public ConfusionSet(long factor, String... words) {
if (factor < 1) {
throw new IllegalArgumentException("factor must be >= 1: " + factor);
}
Objects.requireNonNull(words);
this.factor = factor;
for (String word : words) {
set.add(new ConfusionString(word, null));
}
}
/* Alternative must be at least this much more probable to be considered correct. */
public long getFactor() {
return factor;
}
public Set getSet() {
return Collections.unmodifiableSet(set);
}
public Set getUppercaseFirstCharSet() {
Set result = new HashSet<>();
for (ConfusionString s : set) {
ConfusionString newString = new ConfusionString(StringTools.uppercaseFirstChar(s.getString()), s.getDescription());
result.add(newString);
}
return Collections.unmodifiableSet(result);
}
@Override
public String toString() {
return set.toString();
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ConfusionSet other = (ConfusionSet) o;
return Objects.equals(set, other.set) && Objects.equals(factor, other.factor);
}
@Override
public int hashCode() {
return Objects.hash(set, factor);
}
}