src/main/java/org/apache/datasketches/vector/decomposition/SVDAlgo.java [57:74]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    id_ = id;
    name_ = name;
  }

  /**
   * Returns the ID.
   * @return the ID.
   */
  public int getId() { return id_; }

  /**
   * Gets the name
   * @return the name
   */
  public String getName() { return name_; }

  @Override
  public String toString() { return name_; }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/datasketches/vector/matrix/MatrixType.java [35:52]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    id_ = id;
    name_ = name;
  }

  /**
   * Gets the ID
   * @return the ID
   */
  public int getId() { return id_; }

  /**
   * Gets the name
   * @return the name
   */
  public String getName() { return name_; }

  @Override
  public String toString() { return name_; }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



