public class RuleResult
extends java.lang.Object
History:
| Constructor and Description |
|---|
RuleResult(java.lang.String inTerm,
java.lang.String outTerm,
java.lang.String ruleStr)
Create an object for representing the result after applying a rule,
using input term, output term, and the string format of a rule.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
GetInCategory()
Get the input category from the current rule result.
|
java.lang.String |
GetInInflection()
Get the input inflection from the current rule result.
|
java.lang.String |
GetInTerm()
Get the input term of the current rule result.
|
java.lang.String |
GetOutCategory()
Get the output category from the current rule result.
|
java.lang.String |
GetOutCategoryAndInflection()
Get the output category and inflection from the current rule result.
|
java.lang.String |
GetOutInflection()
Get the output inflection from the current rule result.
|
java.lang.String |
GetOutTerm()
Get the output term (result) of the current rule result.
|
java.lang.String |
GetRuleString()
Get the string format of rule used in the current rule result.
|
public RuleResult(java.lang.String inTerm,
java.lang.String outTerm,
java.lang.String ruleStr)
inTerm - input term of the current rule resultoutTerm - output term (result) of the current rule resultruleStr - string format of rule used in the current rule resultpublic java.lang.String GetInTerm()
public java.lang.String GetOutTerm()
public java.lang.String GetRuleString()
public java.lang.String GetInCategory()
public java.lang.String GetOutCategory()
public java.lang.String GetInInflection()
public java.lang.String GetOutInflection()
public java.lang.String GetOutCategoryAndInflection()