Why do hasMoreElements and hasMoreTokens return the same value?

link|improve this question
Looks like this is one of your first questions. Here's a tip, on Stack Overflow we ask questions and others answer them with the hope that someone else may be able to use your question to find the same answer to the issue that they may be having. If you are going to post a question, please provide some code that shows what you are asking. – Jeffrey Kevin Pry Jul 25 '11 at 10:46
2  
Looking at the answer this seems to be a valid question. – obrok Jul 25 '11 at 10:50
feedback

2 Answers

From the javadoc of hasMoreElements()

/** 
* Returns the same value as the hasMoreTokens
* method. It exists so that this class can implement the
* Enumeration interface.
*/

Javadoc

link|improve this answer
ok, but what method I can use in a simple case or exemple. – AEHP Jul 25 '11 at 11:54
Pick one, since both do the same work, but I would pick hasMoreTokens since that method name explains better what it does. – Kaj Jul 25 '11 at 11:56
OK, thanks. Now, these question is closed. – AEHP Jul 25 '11 at 12:03
You should in that case indicate mark an answer as correct (I think, I have never posted any questions here) – Kaj Jul 25 '11 at 12:04
Yes, I am always learning, Thanks. – AEHP Jul 25 '11 at 13:12
feedback

since this is a legacy class which implements Enumeration it also uses the method hasMoreTokens for simplicity method naming.

In simple case which uses just the StringTokenizer you can use the hasMoreTokens method. In polymorphic case which you created or already has more implementation of the Enumeraion interface you will use the hasMoreElements which is part of the Enumeraion interface.

link|improve this answer
ok, but what method I can use in a simple case or exemple – AEHP Jul 25 '11 at 11:55
In simple case which uses just the StringTokenizer you can use the hasMoreTokens method. In polymorphic case which you created or already has more implementation of the Enumeraion interface you will use the hasMoreElements which is part of the Enumeraion interface (updated my answer) – Haim Sulam Aug 1 '11 at 8:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.