|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object edu.uci.ics.jung.algorithms.importance.Ranking<V>
public class Ranking<V>
Abstract data container for ranking objects. Stores common data relevant to both node and edge rankings, namely, the original position of the instance in the list and the actual ranking score.
Field Summary | |
---|---|
int |
originalPos
The original (0-indexed) position of the instance being ranked |
double |
rankScore
The actual rank score (normally between 0 and 1) |
Constructor Summary | |
---|---|
Ranking(int originalPos,
double rankScore,
V ranked)
Constructor which allows values to be set on construction |
Method Summary | |
---|---|
int |
compareTo(Object o)
Compares two ranking based on the rank score. |
V |
getRanked()
|
void |
setRanked(V ranked)
|
String |
toString()
Returns the rank score as a string. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public int originalPos
public double rankScore
Constructor Detail |
---|
public Ranking(int originalPos, double rankScore, V ranked)
originalPos
- The original (0-indexed) position of the instance being rankedrankScore
- The actual rank score (normally between 0 and 1)Method Detail |
---|
public int compareTo(Object o)
compareTo
in interface Comparable
o
- The other ranking
public String toString()
toString
in class Object
public V getRanked()
public void setRanked(V ranked)
ranked
- the ranked to set
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |