added getCurrentKey method

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150851 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
cmarschner 2002-10-22 15:36:40 +00:00
parent 71607a59dd
commit ebbf92c2f4
1 changed files with 7 additions and 0 deletions

View File

@ -93,6 +93,13 @@ public class HashedCircularLinkedList
}
}
public Object getCurrentKey()
{
return current != null ? current.key : null;
}
/**
* the list. contains objects
*/