Class DecisionSet

java.lang.Object
generic.constraint.DecisionSet

public class DecisionSet extends Object
The result object returned from a scan of a decision tree looking for property values that match the constrains for some test object.
  • Constructor Details Link icon

    • DecisionSet Link icon

      public DecisionSet(String propertyName)
  • Method Details Link icon

    • getDecisions Link icon

      public List<Decision> getDecisions()
      Returns a list of all the decisions whose descision path constraints matched the given test object.
      Returns:
      a list of all the decisions whose descision path constraints matched the given test object.
    • getValues Link icon

      public List<String> getValues()
      Returns a list of property values from decision paths that matched the constraints.
      Returns:
      a list of property values from decision paths that matched the constraints.
    • getDecisionPropertyName Link icon

      public String getDecisionPropertyName()
      Returns the name of the property that was scanned for in the decision tree.
      Returns:
      the name of the property that was scanned for in the decision tree.
    • isEmpty Link icon

      public boolean isEmpty()
      Returns true if this decisionSet has no results.
      Returns:
      true if this decisionSet has no results.