Package jadex.bdiv3x.features
Class BDIXAgentFeature.LifecycleStateCondition
- java.lang.Object
- 
- jadex.bdiv3x.features.BDIXAgentFeature.LifecycleStateCondition
 
- 
- All Implemented Interfaces:
- ICondition
 - Enclosing class:
- BDIXAgentFeature
 
 public static class BDIXAgentFeature.LifecycleStateCondition extends java.lang.Object implements ICondition Condition for checking the lifecycle state of a goal.
- 
- 
Field SummaryFields Modifier and Type Field Description protected booleanallowedThe flag if state is allowed or disallowed.protected java.util.Set<IGoal.GoalLifecycleState>statesThe allowed states.- 
Fields inherited from interface jadex.rules.eca.IConditionFALSE, TRUE, TRUE_CONDITION
 
- 
 - 
Constructor SummaryConstructors Constructor Description LifecycleStateCondition(IGoal.GoalLifecycleState state)Create a new condition.LifecycleStateCondition(IGoal.GoalLifecycleState state, boolean allowed)Create a new condition.LifecycleStateCondition(java.util.Set<IGoal.GoalLifecycleState> states)Create a new condition.LifecycleStateCondition(java.util.Set<IGoal.GoalLifecycleState> states, boolean allowed)Create a new condition.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description IFuture<Tuple2<java.lang.Boolean,java.lang.Object>>evaluate(IEvent event)Evaluate the condition.
 
- 
- 
- 
Field Detail- 
statesprotected java.util.Set<IGoal.GoalLifecycleState> states The allowed states.
 - 
allowedprotected boolean allowed The flag if state is allowed or disallowed.
 
- 
 - 
Constructor Detail- 
LifecycleStateConditionpublic LifecycleStateCondition(IGoal.GoalLifecycleState state) Create a new condition.
 - 
LifecycleStateConditionpublic LifecycleStateCondition(java.util.Set<IGoal.GoalLifecycleState> states) Create a new condition.
 - 
LifecycleStateConditionpublic LifecycleStateCondition(IGoal.GoalLifecycleState state, boolean allowed) Create a new condition.
 - 
LifecycleStateConditionpublic LifecycleStateCondition(java.util.Set<IGoal.GoalLifecycleState> states, boolean allowed) Create a new condition.
 
- 
 - 
Method Detail- 
evaluatepublic IFuture<Tuple2<java.lang.Boolean,java.lang.Object>> evaluate(IEvent event) Evaluate the condition.- Specified by:
- evaluatein interface- ICondition
- Parameters:
- event- The event.
- Returns:
- True, if condition is met (plus additional user data).
 
 
- 
 
-