Uses of Class
story.scheherazade.prologuer.PredicateMode

Packages that use PredicateMode
story.scheherazade.admin   
story.scheherazade.elements   
story.scheherazade.misc   
story.scheherazade.parameters   
story.scheherazade.prologuer   
 

Uses of PredicateMode in story.scheherazade.admin
 

Methods in story.scheherazade.admin with parameters of type PredicateMode
 ValidAction StoryInterpreter.makeValidAction(TimelineID timelineID, ActionType actionType, SCHArguments arguments, boolean truthAssertion, PredicateMode mode)
           
 ValidAction StoryInterpreter.makeValidAction(TimelineID timelineID, ActionType actionType, SCHArguments arguments, PredicateMode mode)
           
 ValidAction StoryInterpreter.makeValidAction(TimelineID timelineID, CoreAction action, SCHArguments arguments, boolean truthAssertion, PredicateMode mode)
           
 ValidAction StoryInterpreter.makeValidAction(TimelineID timelineID, CoreAction action, SCHArguments arguments, PredicateMode mode)
           
 ValidCondition StoryInterpreter.makeValidCondition(TimelineID timelineID, ConditionType conditionType, SCHArguments arguments, boolean truthAssertion, PredicateMode mode)
           
 ValidCondition StoryInterpreter.makeValidCondition(TimelineID timelineID, ConditionType conditionType, SCHArguments arguments, DegreeCategory degree, PredicateMode mode)
           
 ValidCondition StoryInterpreter.makeValidCondition(TimelineID timelineID, ConditionType conditionType, SCHArguments arguments, java.lang.Integer degree, PredicateMode mode)
           
 ValidCondition StoryInterpreter.makeValidCondition(TimelineID timelineID, ConditionType conditionType, SCHArguments arguments, int degree, PredicateMode mode)
           
 

Uses of PredicateMode in story.scheherazade.elements
 

Methods in story.scheherazade.elements that return PredicateMode
 PredicateMode ValidTimeline.getMode()
           
 PredicateMode Condition.getMode()
          Get the mode of the condition.
 PredicateMode Action.getMode()
          Get the mode of the action.
 

Methods in story.scheherazade.elements with parameters of type PredicateMode
 java.lang.Object Timeline.generateRandomPredicate(StoryTelling telling, NodeAddress timeline, PredicateFlavor flavor, story.scheherazade.elements.Timeline.GenerationState genstate, int indent, PredicateMode predicateMode)
          Generate a completely random predicate.
 ValidAction Timeline.makeValidAction(NodeAddress timeline, ActionType actionType, SCHArguments arguments, int truthDegree, PredicateMode mode)
          Define an instance of a previously declared Action.
 ValidAction Narrative.makeValidAction(TimelineID timelineID, ActionType actionType, SCHArguments arguments, int truthDegree, PredicateMode mode)
          Create an instance of a previously declared Action.
 ValidCondition Timeline.makeValidCondition(NodeAddress timeline, ConditionType condition, SCHArguments arguments, int truthDegree, PredicateMode mode)
          Define an instance of a previously declared Condition.
 ValidCondition Narrative.makeValidCondition(TimelineID timelineID, ConditionType conditionType, SCHArguments arguments, int truthDegree, PredicateMode mode)
          Create an instance of a previously declared Condition.
static java.lang.StringBuffer Action.render(ActionType actionType, SCHArguments arguments, int truthDegree, PredicateMode mode)
          A static function that renders a ActionType and arguments as they would be rendered if they were part of an Action.
static java.lang.StringBuffer Condition.render(ConditionType conditionType, SCHArguments arguments, int truthDegree, PredicateMode mode)
          A static function that renders a ConditionType and arguments as they would be rendered if they were part of a Condition.
 

Constructors in story.scheherazade.elements with parameters of type PredicateMode
Action(ActionType actionType, SCHArguments arguments, int truthDegree, PredicateMode mode)
           
Condition(ConditionType conditionType, SCHArguments arguments, int truthDegree, PredicateMode mode)
           
ValidAction(Timeline timelineHandler, NodeAddress timeline, ActionType actionType, SCHArguments arguments, int truthDegree, PredicateMode mode)
           
ValidCondition(Timeline timelineHandler, NodeAddress timeline, ConditionType conditionType, SCHArguments arguments, int truthDegree, PredicateMode mode)
           
ValidTimeline(TimelineID timeline, PredicateMode mode)
           
 

Uses of PredicateMode in story.scheherazade.misc
 

Methods in story.scheherazade.misc that return PredicateMode
 PredicateMode SCHHashtable.getPredicateMode(java.lang.String key)
          Get PredicateMode.
 

Methods in story.scheherazade.misc with parameters of type PredicateMode
 void SCHHashtable.setPredicateMode(java.lang.String key, PredicateMode value)
          Set PredicateMode.
 

Uses of PredicateMode in story.scheherazade.parameters
 

Methods in story.scheherazade.parameters that return PredicateMode
 PredicateMode ValidTimelineParameter.getMode()
           
 PredicateMode ValidConditionParameter.getMode()
           
 PredicateMode ValidActionParameter.getMode()
           
 

Methods in story.scheherazade.parameters with parameters of type PredicateMode
 boolean ValidPropositionParameter.allowsMode(PredicateMode mode)
           
 

Constructors in story.scheherazade.parameters with parameters of type PredicateMode
ValidActionParameter(SemanticRole role, TimelineID timeline, PredicateMode mode)
           
ValidActionParameter(SemanticRole role, TimelineID timeline, PredicateMode mode, ActionType actionType)
           
ValidConditionParameter(SemanticRole role, TimelineID timeline, PredicateMode mode)
           
ValidConditionParameter(SemanticRole role, TimelineID timeline, PredicateMode mode, ConditionType conditionType)
           
ValidTimelineParameter(SemanticRole role, TimelineID scopeTimeline, PredicateMode mode)
          Constructor to match any timeline in the scope of the argued timeline, other than the argued Timeline itself.
 

Uses of PredicateMode in story.scheherazade.prologuer
 

Fields in story.scheherazade.prologuer declared as PredicateMode
static PredicateMode PredicateMode.ActionAssert
           
static PredicateMode PredicateMode.ActionGerund
           
static PredicateMode PredicateMode.ActionHowInstructional
           
static PredicateMode PredicateMode.ActionImperative
           
static PredicateMode PredicateMode.ActionInfinitive
           
static PredicateMode PredicateMode.ConditionAssert
           
static PredicateMode PredicateMode.ConditionGerund
           
static PredicateMode PredicateMode.ConditionHowInstructional
           
static PredicateMode PredicateMode.ConditionImperative
           
static PredicateMode PredicateMode.ConditionInfinitive
           
static PredicateMode PredicateMode.GenericPlaceholder
           
static PredicateMode PredicateMode.How
           
static PredicateMode PredicateMode.NonApplicable
           
static PredicateMode PredicateMode.RealityAction
           
static PredicateMode PredicateMode.RealityCondition
           
static PredicateMode PredicateMode.TimelineAssert
           
static PredicateMode PredicateMode.TimelineHowFactual
           
static PredicateMode PredicateMode.TimelineHowInstructional
           
static PredicateMode PredicateMode.TimelineImperative
           
static PredicateMode PredicateMode.TimelineSubjunctive
           
 

Methods in story.scheherazade.prologuer that return PredicateMode
static PredicateMode PredicateMode.get(int number)
          Return the corresponding PredicateMode for the given number.
static PredicateMode PredicateMode.get(java.lang.String string)
          Static version of get() that gets around the Java restriction on static types in interfaces.
 

Methods in story.scheherazade.prologuer that return types with arguments of type PredicateMode
 java.util.Vector<PredicateMode> PredicateModeSet.toVector()
           
 

Methods in story.scheherazade.prologuer with parameters of type PredicateMode
 void PredicateModeSet.add(PredicateMode name)
           
 boolean PredicateModeSet.contains(PredicateMode mode)
           
 

Constructors in story.scheherazade.prologuer with parameters of type PredicateMode
PredicateModeSet(PredicateMode mode0)
           
PredicateModeSet(PredicateMode mode0, PredicateMode mode1)
           
PredicateModeSet(PredicateMode mode0, PredicateMode mode1, PredicateMode mode2)
           
PredicateModeSet(PredicateMode mode0, PredicateMode mode1, PredicateMode mode2, PredicateMode mode3)
           
PredicateModeSet(PredicateMode mode0, PredicateMode mode1, PredicateMode mode2, PredicateMode mode3, PredicateMode mode4)
           
PredicateModeSet(PredicateMode mode0, PredicateMode mode1, PredicateMode mode2, PredicateMode mode3, PredicateMode mode4, PredicateMode mode5)
           
PredicateModeSet(PredicateMode mode0, PredicateMode mode1, PredicateMode mode2, PredicateMode mode3, PredicateMode mode4, PredicateMode mode5, PredicateMode mode6)
           
PredicateModeSet(PredicateMode mode0, PredicateMode mode1, PredicateMode mode2, PredicateMode mode3, PredicateMode mode4, PredicateMode mode5, PredicateMode mode6, PredicateMode mode7)
           
PredicateModeSet(PredicateMode mode0, PredicateMode mode1, PredicateMode mode2, PredicateMode mode3, PredicateMode mode4, PredicateMode mode5, PredicateMode mode6, PredicateMode mode7, PredicateMode mode8)
           
PredicateModeSet(PredicateMode mode0, PredicateMode mode1, PredicateMode mode2, PredicateMode mode3, PredicateMode mode4, PredicateMode mode5, PredicateMode mode6, PredicateMode mode7, PredicateMode mode8, PredicateMode mode9)
           
PredicateModeSet(PredicateMode mode0, PredicateMode mode1, PredicateMode mode2, PredicateMode mode3, PredicateMode mode4, PredicateMode mode5, PredicateMode mode6, PredicateMode mode7, PredicateMode mode8, PredicateMode mode9, PredicateMode mode10)
           
 



Copyright © 2011 David K. Elson. All Rights Reserved.