Record Class AiToolRegistryImpl.ResolvedAiTools

java.lang.Object
java.lang.Record
io.jmix.aitools.tool.impl.AiToolRegistryImpl.ResolvedAiTools
Record Components:
resolvedTools - all resolved tools in registration order
toolsByName - resolved tools indexed by their registry name
allToolCallbacks - callbacks of all resolved tools, in the same order as resolvedTools
Enclosing class:
AiToolRegistryImpl

protected static record AiToolRegistryImpl.ResolvedAiTools(List<ResolvedAiTool> resolvedTools, Map<String,ResolvedAiTool> toolsByName, List<org.springframework.ai.tool.ToolCallback> allToolCallbacks) extends Record
Immutable consistent registry state.
  • Field Details

  • Constructor Details

    • ResolvedAiTools

      protected ResolvedAiTools(List<ResolvedAiTool> resolvedTools, Map<String,ResolvedAiTool> toolsByName, List<org.springframework.ai.tool.ToolCallback> allToolCallbacks)
      Creates an instance of a ResolvedAiTools record class.
      Parameters:
      resolvedTools - the value for the resolvedTools record component
      toolsByName - the value for the toolsByName record component
      allToolCallbacks - the value for the allToolCallbacks record component
  • Method Details

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • resolvedTools

      public List<ResolvedAiTool> resolvedTools()
      Returns the value of the resolvedTools record component.
      Returns:
      the value of the resolvedTools record component
    • toolsByName

      public Map<String,ResolvedAiTool> toolsByName()
      Returns the value of the toolsByName record component.
      Returns:
      the value of the toolsByName record component
    • allToolCallbacks

      public List<org.springframework.ai.tool.ToolCallback> allToolCallbacks()
      Returns the value of the allToolCallbacks record component.
      Returns:
      the value of the allToolCallbacks record component