Class BindexInfo

java.lang.Object
org.machanism.machai.bindex.core.BindexInfo

public class BindexInfo extends Object
Represents metadata information for a Bindex record, including its identifier, version, description, and relevance score.

This class is used to encapsulate summary details about a Bindex entry, typically for search, recommendation, or reporting purposes.

Since:
1.2.0
Author:
Viktor Tovstyi
  • Constructor Details

    • BindexInfo

      public BindexInfo()
      Creates an empty Bindex metadata summary.
  • Method Details

    • getId

      public String getId()
      Returns the unique identifier for the Bindex record.
      Returns:
      the Bindex id
    • setId

      public void setId(String id)
      Sets the unique identifier for the Bindex record.
      Parameters:
      id - the Bindex id
    • getVersion

      public String getVersion()
      Returns the version string of the Bindex record.
      Returns:
      the version
    • setVersion

      public void setVersion(String version)
      Sets the version string of the Bindex record.
      Parameters:
      version - the version
    • getDescription

      public String getDescription()
      Returns the description of the Bindex record.
      Returns:
      the description
    • setDescription

      public void setDescription(String description)
      Sets the description of the Bindex record.
      Parameters:
      description - the description
    • getScore

      public double getScore()
      Returns the relevance score associated with the Bindex record.
      Returns:
      the score
    • setScore

      public void setScore(double score)
      Sets the relevance score associated with the Bindex record.
      Parameters:
      score - the score