This interface declares, that an object can act as a sequence with a
close operation and it also offers a method that returns
uid of the item that is read currently.
while ((i=Sequence.next()) != null) {
System.out.println(i.toString()+" has uid "+Sequence.getUid());
:
}
Sequence.close();
Author:
Leo Galambos
Method Summary
long
getLocalUID()
Gets the uid attribute of the item that is read currently.