What is an enumeration class?
Answers were Sorted based on User's Feedback
Answer / janet
An object that implements the Enumeration interface
generates a series of elements,one at a time. It has two
methods,namely hasMoreElements() and nextElement().
hasMoreElements() tests if this enumeration has more
elements and nextElement() method returns successive
elements of the series.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / ravikiran(aptech mumbai)
enumeration class contains the method elements to traverse
threw the elements of collection
| Is This Answer Correct ? | 2 Yes | 2 No |
Is java 1.7 the same as java 7?
What is return null in java?
How GUI component handle its own events?
Add a value x to array from index l to r where 0 <= l <= r <= n-1
What is append in java?
Explain the importance of import keyword in java?
Differentiate between postfix and prefix operators in java.
Explain the protected field modifier?
List any five features of java?
How many bytes are there?
what is the difference between String and StringBuffer classes?
can two class in a code be public??if yes then how??