java.lang.Object
org.apache.jena.reasoner.rulesys.impl.StateFlag

public class StateFlag extends Object
A set of constants used to record state information in the backchaining rule interpreter.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final StateFlag
    Indicates that the goal remains active
    static final StateFlag
    Indicates a goal has failed and return no more answers at this time
    static final StateFlag
    Indicates a fully satisfied goal
    static final StateFlag
    Indicates that all currently available results have been returned and the goal should be suspended into new subgoal results have been generated
  • Method Summary

    Modifier and Type
    Method
    Description
    Print string

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • FAIL

      public static final StateFlag FAIL
      Indicates a goal has failed and return no more answers at this time
    • SUSPEND

      public static final StateFlag SUSPEND
      Indicates that all currently available results have been returned and the goal should be suspended into new subgoal results have been generated
    • ACTIVE

      public static final StateFlag ACTIVE
      Indicates that the goal remains active
    • SATISFIED

      public static final StateFlag SATISFIED
      Indicates a fully satisfied goal
  • Method Details