Record Class AlgorithmInventoryService.AlgorithmInventory

java.lang.Object
java.lang.Record
es.urjc.etsii.grafo.autoconfig.inventory.AlgorithmInventoryService.AlgorithmInventory
Enclosing class:
AlgorithmInventoryService

public static record AlgorithmInventoryService.AlgorithmInventory(Map<Class<?>,Collection<Class<?>>> componentsByType, Map<String,Class<?>> componentByName, Map<String,String> aliases, Map<String,AlgorithmComponentFactory> factories, List<ParameterProvider> paramProviders) extends Record
  • Constructor Details

    • AlgorithmInventory

      public AlgorithmInventory(Map<Class<?>,Collection<Class<?>>> componentsByType, Map<String,Class<?>> componentByName, Map<String,String> aliases, Map<String,AlgorithmComponentFactory> factories, List<ParameterProvider> paramProviders)
      Creates an instance of a AlgorithmInventory record class.
      Parameters:
      componentsByType - the value for the componentsByType record component
      componentByName - the value for the componentByName record component
      aliases - the value for the aliases record component
      factories - the value for the factories record component
      paramProviders - the value for the paramProviders record component
  • Method Details

    • allComponents

      public Set<Class<?>> allComponents()
      Get all detected algorithm components
      Returns:
      New set containing a reference to each algorithm component detected
    • 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.
    • componentsByType

      public Map<Class<?>,Collection<Class<?>>> componentsByType()
      Returns the value of the componentsByType record component.
      Returns:
      the value of the componentsByType record component
    • componentByName

      public Map<String,Class<?>> componentByName()
      Returns the value of the componentByName record component.
      Returns:
      the value of the componentByName record component
    • aliases

      public Map<String,String> aliases()
      Returns the value of the aliases record component.
      Returns:
      the value of the aliases record component
    • factories

      public Map<String,AlgorithmComponentFactory> factories()
      Returns the value of the factories record component.
      Returns:
      the value of the factories record component
    • paramProviders

      public List<ParameterProvider> paramProviders()
      Returns the value of the paramProviders record component.
      Returns:
      the value of the paramProviders record component