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 string is a data type?
What is difference between word and integer?
what is Remote Reference Layer ?
How do you sort in ascending order in java?
What is ResourceBundle class?
What is the loop in java?
Explain java coding standards for variables ?
What are the performance implications of interfaces over abstract classes?
What do you understand by abstract classes?
How to Create A Wapper Class in core Java and Why are Use in java?
how to run servlet program between two computer through the internet ?
2 Answers Kiran Prakashan, TCS,
A abstract class extending an abstract class.Super class has both abstract and non-abstract methods.How can we implement abstract and non-abstract mehtods? Explain with snippet