Record Class ErrorRecoveryResult
java.lang.Object
java.lang.Record
dev.langchain4j.agentic.agent.ErrorRecoveryResult
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionErrorRecoveryResult
(ErrorRecoveryResult.Type type, Object result) Creates an instance of aErrorRecoveryResult
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.result()
Returns the value of theresult
record component.static ErrorRecoveryResult
static ErrorRecoveryResult
retry()
static ErrorRecoveryResult
final String
toString()
Returns a string representation of this record class.type()
Returns the value of thetype
record component.
-
Constructor Details
-
ErrorRecoveryResult
Creates an instance of aErrorRecoveryResult
record class.- Parameters:
type
- the value for thetype
record componentresult
- the value for theresult
record component
-
-
Method Details
-
throwException
-
retry
-
result
-
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 withObjects::equals(Object,Object)
. -
type
Returns the value of thetype
record component.- Returns:
- the value of the
type
record component
-
result
Returns the value of theresult
record component.- Returns:
- the value of the
result
record component
-