Class ConditionalEffect

java.lang.Object
fr.uga.pddl4j.problem.operator.ConditionalEffect
All Implemented Interfaces:
Serializable

public class ConditionalEffect extends Object implements Serializable
This class allows to implements the conditional effects of an action.
See Also:
Serialized Form
  • Constructor Details

    • ConditionalEffect

      public ConditionalEffect(ConditionalEffect other)
      Creates a conditional effect from an other. This constructor is the copy constructor.
      Parameters:
      other - the other conditional bit expression.
    • ConditionalEffect

      public ConditionalEffect()
      Creates a new empty conditional effect.
    • ConditionalEffect

      public ConditionalEffect(Effect effects)
      Creates a new conditional effect with some specified effects.
      Parameters:
      effects - the effects.
    • ConditionalEffect

      public ConditionalEffect(Condition conditions, Effect effects)
      Creates a new conditional effect with some specified conditions and effects.
      Parameters:
      conditions - the conditions.
      effects - the effects.
  • Method Details

    • getCondition

      public final Condition getCondition()
      Returns the conditions of the conditional effect.
      Returns:
      the conditions of the conditional effect.
    • setCondition

      public final void setCondition(Condition conditions)
      Sets the conditions of the conditional effect.
      Parameters:
      conditions - the conditions to set.
    • getEffect

      public final Effect getEffect()
      Returns the effects of the conditional effect.
      Returns:
      the effects of the conditional effect.
    • setEffect

      public final void setEffect(Effect effects)
      Sets the effects of the conditional effect.
      Parameters:
      effects - the effects to set
    • hashCode

      public int hashCode()
      Returns the hash code of this conditional effect.
      Overrides:
      hashCode in class Object
      Returns:
      the hash code of this conditional effect.
      See Also:
      Object.hashCode()
    • equals

      public boolean equals(Object obj)
      Returns true if a specified object is equal to this conditional expression. In other words, returns true if the specified object is an instance of the same type as this instance, all of whose members (conditions and effects) are equal to the corresponding member of this conditional expression.
      Overrides:
      equals in class Object
      Parameters:
      obj - the reference object with which to compare.
      Returns:
      true if a specified object is equal to this conditional expression; false.
      See Also:
      Object.equals(java.lang.Object)