Record Class ReplanPolicy.Replan
java.lang.Object
java.lang.Record
com.google.adk.planner.goap.ReplanPolicy.Replan
- Record Components:
maxAttempts- maximum number of consecutive replan attempts before falling back to fail-stop. Must be>= 1.
- All Implemented Interfaces:
ReplanPolicy
- Enclosing interface:
ReplanPolicy
Attempt to recompute the remaining plan from current world state.
-
Nested Class Summary
Nested classes/interfaces inherited from interface ReplanPolicy
ReplanPolicy.FailStop, ReplanPolicy.Ignore, ReplanPolicy.ReplanModifier and TypeInterfaceDescriptionstatic final recordStop immediately on failure with an error message.static final recordIgnore failures and proceed with the remaining plan as-is.static final recordAttempt to recompute the remaining plan from current world state. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intReturns the value of themaxAttemptsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Replan
public Replan(int maxAttempts) Creates an instance of aReplanrecord class.- Parameters:
maxAttempts- the value for themaxAttemptsrecord component
-
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with thecomparemethod from their corresponding wrapper classes. -
maxAttempts
public int maxAttempts()Returns the value of themaxAttemptsrecord component.- Returns:
- the value of the
maxAttemptsrecord component
-