Currently there is a method called getLink(String rel) that returns a link with the given rel. However, it is possible to have multiple links that share the same rel. Therefore, I think it might be beneficial to have a method like so:
public List<Link> getLinks(String rel);
Which will return a list of links that have the given rel.