public void updateWith(Rankings other) { for (Rankable r : other.getRankings()) { updateWith(r); } }
/** * Copy constructor. * * @param other */ public Rankings(Rankings other) { this(other.maxSize()); updateWith(other); }