Uses of Class
net.sf.jdmf.data.output.RuleElement

Packages that use RuleElement
net.sf.jdmf.data.output   
 

Uses of RuleElement in net.sf.jdmf.data.output
 

Methods in net.sf.jdmf.data.output that return RuleElement
 RuleElement RuleElement.and(Rule parentRule)
          Appends a new rule element using the AND operator.
 RuleElement RuleElement.attribute(java.lang.String attributeName)
          Defines the attribute name of an item.
 RuleElement Rule.defineIf()
          Allows to define conditions.
 RuleElement Rule.defineThen()
          Allows to define consequences.
 RuleElement RuleElement.doesNotEqual(java.lang.Comparable attributeValue)
          Defines the relation between the attribute name and value within an item.
 RuleElement RuleElement.equals(java.lang.Comparable attributeValue)
          Defines the relation between the attribute name and value within an item.
 RuleElement Rule.getLastCondition()
           
 RuleElement Rule.getLastConsequence()
           
 RuleElement RuleElement.isGreaterThan(java.lang.Comparable attributeValue)
          Defines the relation between the attribute name and value within an item.
 RuleElement RuleElement.isGreaterThanOrEqualTo(java.lang.Comparable attributeValue)
          Defines the relation between the attribute name and value within an item.
 RuleElement RuleElement.isLowerThan(java.lang.Comparable attributeValue)
          Defines the relation between the attribute name and value within an item.
 RuleElement RuleElement.isLowerThanOrEqualTo(java.lang.Comparable attributeValue)
          Defines the relation between the attribute name and value within an item.
 RuleElement RuleElement.or(Rule parentRule)
          Appends a new rule element using the OR operator.
 RuleElement RuleElement.xor(Rule parentRule)
          Appends a new rule element using the XOR operator.
 

Methods in net.sf.jdmf.data.output that return types with arguments of type RuleElement
 java.util.List<RuleElement> Rule.getConditions()
           
 java.util.List<RuleElement> Rule.getConsequences()
           
 java.util.Iterator<RuleElement> RuleElement.subElementsIterator()
           
 

Methods in net.sf.jdmf.data.output with parameters of type RuleElement
 void Rule.addCondition(RuleElement condition)
           
 void Rule.addConsequence(RuleElement consequence)
           
 void RuleElement.addSubElement(RuleElement subElement)
           
 

Method parameters in net.sf.jdmf.data.output with type arguments of type RuleElement
 void Rule.setConditions(java.util.List<RuleElement> conditions)
           
 void Rule.setConsequences(java.util.List<RuleElement> consequences)