org.itc.irst.tcc.sre.util
Class SparseVector.Entry

java.lang.Object
  extended by org.itc.irst.tcc.sre.util.SparseVector.Entry
Enclosing class:
SparseVector

public class SparseVector.Entry
extends java.lang.Object


Field Summary
private  int index
           
private  SparseVector.Entry next
           
private  SparseVector.Entry prev
           
private  double value
           
 
Constructor Summary
SparseVector.Entry(int index, double value)
           
 
Method Summary
 int getIndex()
           
 SparseVector.Entry getNext()
           
 SparseVector.Entry getPrev()
           
 double getValue()
           
 SparseVector.Entry setNext(SparseVector.Entry e)
           
 SparseVector.Entry setPrev(SparseVector.Entry e)
           
 void setValue(double value)
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

prev

private SparseVector.Entry prev

next

private SparseVector.Entry next

index

private int index

value

private double value
Constructor Detail

SparseVector.Entry

public SparseVector.Entry(int index,
                          double value)
Method Detail

getIndex

public int getIndex()

getValue

public double getValue()

setValue

public void setValue(double value)

getPrev

public SparseVector.Entry getPrev()

getNext

public SparseVector.Entry getNext()

setPrev

public SparseVector.Entry setPrev(SparseVector.Entry e)

setNext

public SparseVector.Entry setNext(SparseVector.Entry e)

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object