Uses of Class
org.languagetool.rules.patterns.AbstractPatternRule
-
Packages that use AbstractPatternRule Package Description org.languagetool org.languagetool.noop org.languagetool.rules.patterns org.languagetool.rules.patterns.bitext org.languagetool.tagging.disambiguation.rules -
-
Uses of AbstractPatternRule in org.languagetool
Methods in org.languagetool that return types with arguments of type AbstractPatternRule Modifier and Type Method Description protected List<AbstractPatternRule>
Language. getPatternRules()
Get the pattern rules as defined in the files returned byLanguage.getRuleFileNames()
.List<AbstractPatternRule>
JLanguageTool. getPatternRulesByIdAndSubId(String id, String subId)
Get pattern rules by Id and SubId.List<AbstractPatternRule>
JLanguageTool. loadFalseFriendRules(String filename)
Load false friend rules from an XML file.List<AbstractPatternRule>
JLanguageTool. loadPatternRules(String filename)
Load pattern rules from an XML file. -
Uses of AbstractPatternRule in org.languagetool.noop
Methods in org.languagetool.noop that return types with arguments of type AbstractPatternRule Modifier and Type Method Description protected List<AbstractPatternRule>
NoopLanguage. getPatternRules()
-
Uses of AbstractPatternRule in org.languagetool.rules.patterns
Subclasses of AbstractPatternRule in org.languagetool.rules.patterns Modifier and Type Class Description class
FalseFriendPatternRule
A pattern rule for finding false friends.class
PatternRule
A Rule that describes a language error as a simple pattern of words or of part-of-speech tags.class
RegexPatternRule
Matches 'regexp' elements from XML rules against sentences.Fields in org.languagetool.rules.patterns declared as AbstractPatternRule Modifier and Type Field Description protected AbstractPatternRule
AbstractPatternRulePerformer. rule
Fields in org.languagetool.rules.patterns with type parameters of type AbstractPatternRule Modifier and Type Field Description protected List<AbstractPatternRule>
XMLRuleHandler. rules
Methods in org.languagetool.rules.patterns that return types with arguments of type AbstractPatternRule Modifier and Type Method Description List<AbstractPatternRule>
FalseFriendRuleLoader. getRules(File file, Language language, Language motherTongue)
List<AbstractPatternRule>
FalseFriendRuleLoader. getRules(InputStream stream, Language textLanguage, Language motherTongue)
List<AbstractPatternRule>
PatternRuleLoader. getRules(File file)
List<AbstractPatternRule>
PatternRuleLoader. getRules(InputStream is, String filename)
List<AbstractPatternRule>
XMLRuleHandler. getRules()
Methods in org.languagetool.rules.patterns with parameters of type AbstractPatternRule Modifier and Type Method Description protected void
PatternRuleHandler. prepareRule(AbstractPatternRule rule)
protected void
XMLRuleHandler. setRuleFilter(String filterClassName, String filterArgs, AbstractPatternRule rule)
Constructors in org.languagetool.rules.patterns with parameters of type AbstractPatternRule Constructor Description AbstractPatternRulePerformer(AbstractPatternRule rule, Unifier unifier)
-
Uses of AbstractPatternRule in org.languagetool.rules.patterns.bitext
Methods in org.languagetool.rules.patterns.bitext that return AbstractPatternRule Modifier and Type Method Description AbstractPatternRule
BitextPatternRule. getSrcRule()
AbstractPatternRule
BitextPatternRule. getTrgRule()
-
Uses of AbstractPatternRule in org.languagetool.tagging.disambiguation.rules
Subclasses of AbstractPatternRule in org.languagetool.tagging.disambiguation.rules Modifier and Type Class Description class
DisambiguationPatternRule
A Rule that describes a pattern of words or part-of-speech tags used for disambiguation.
-