Java, in its earliest versions, didn’t come with the Collection framework. Instead, it relied on defining specific classes and interfaces to store objects and their assigned methods. It wasn’t until J2SE 1.2 that the collection interface was introduced, which is commonly known as legacy classes in Java. Since then, these classes have been engineered to work correctly with Generics, and given below are some of the widespread usage of legacy classes:
- Dictionary: An abstract class in nature assigned to hold values as the value pair.
- Properties: Thread-safe by nature, it doesn’t require any manual sync to hold values in the key pair, and is an extension to Hashtable class.
- HashTable: It is a large part of the java.util package that is an extension to the dictionary class. In-sync with the Java1.2 framework, it works on the execution of the map interface, being a package of the collection framework.
- Vector: Identical to the ArrayList, except for a few stark differences, this class is mainly used by programmers who aren’t sure about the array’s length.Â
- Stack: Commonly referred to as LIFO, it is an extension to the vector class.
Apart from the legacy classes, there is only one legacy interface in Java called the Enumeration.Â
Check out our free courses to get an edge over the competition.
The legacy classes in Java are what was called as the ad hoc classes that used to contain values and object groups. Java 2 used to be missing a unified framework called the collections framework before it was introduced in Java 2. The objectives of such a framework are:
- It needs to be a high-performing interface with several features like linked lists, trees, dynamic arrays, and more to remain hugely efficient.Â
- It would also enable different collection frameworks to work in sync with its superior interoperability.Â
In general, a collections framework stands for combined infrastructure built for the representation and operating methods and variables. Developed around a predefined set of standard interfaces like LinkedList, HashSet, and more, these frameworks can be entirely used as per its presets or customized accordingly.
Explore our Popular Software Engineering Courses
Check out upGrad’s Advanced Certification in Cyber SecurityÂ
Read more: A Guide to Iterator Implementation in Java
Collection Interfaces: Enumeration Interface and legacy classes in Java
The Enumeration: It is a legacy interface by nature; it can enumerate several values into a collection of objects and is followed by an Iterator.Â
The Enumeration interface works similarly to that of its superseding Iterator as it obtains values one at a time. This method is also invoked by the legacy classes in Java-like that of the Vector and Properties for carrying out a few ways. Here are some characteristics of an Enumeration interface:
Check out upGrad’s Advanced Certification in Cloud Computing Â
- Any class that works on the execution of the Enumeration interface would gain values in a long series, yielding one value at a time.
- Superseded by the Iterator, the enumeration processes only get copied by the Iterator. It also includes a few more methods like remove() and more in newer enforcing of the enumeration interface.
The methods followed by the Enumeration interface are:
- boolean hasMoreElements(): This function returns 1, if more values are remaining for extraction, and returns 0 if all the values have been enumerated.Â
- Object nextElement(): This function returns the upcoming value in the enumeration process, and sets off the NoSuchElementException in the case of no more objects.Â
Read: Top 6 Reasons Why Java Is So Popular With Developers
Vector Class Constructors and Legacy Methods
- Vector(): By-default vector creation with a predefined size of 10.
- Vector(int size): Creation of a vector with the initial capacity based upon its size.
- Vector(int size, int incr): Making a vector with its initial capacity specified by size and increment specified by incr. Here, the increment function designates respective elements every time the vector gets resized and added by objects.
- Vector (Collection C): Creation of a vector that consists of elements from the collection C
The Legacy Methods include:
- void addElement(E element): It helps in adding up of element into a vector
- E elementAt(int index): It returns the value at predefined index
- Enumeration elements(): This returns an item, obtained one-by-one in Vector
- E firstElement(): It returns only the first element in Vector
- E last element (): It returns only the final component of the vector.
- void removeAllElements(): It can remove all the elements of a vector.
Explore Our Software Development Free Courses
HashTable and HashMap: Key DifferencesÂ
HashTable | HashMap |
This class is synchronized. | This class isn’t in sync. |
Thread-safe and takes more time to work | Faster in execution |
The key or the values can’t be null. | Both the key and the values can be invalid. |
The table order remains constant through time. | The map may or may not remain consistent throughout. |
That was all about legacy classes in Java, we hope you found that useful!
Also read: Java Developer Salary in India: For Freshers & Experienced
Conclusion
If you’re interested to learn more about full-stack software development, check out upGrad & IIIT-B’s PG Diploma in Full-stack Software Development which is designed for working professionals and offers 500+ hours of rigorous training, 9+ projects, and assignments, IIIT-B Alumni status, practical hands-on capstone projects & job assistance with top firms.
What is the average salary of a Java Developer in India?
Java is one of the most popular programming languages. Even with the advent of so many languages, Java still holds a place of value. It is the most used programming language in the world. Java is used in Android app development, AI, big data, etc., to name a few. Considering the popularity of Java, Java Developer as a profession is in high demand. Many big companies such as Morgan Stanley, JP Morgan Chase, etc. The average salary of a Java Developer in India is approximately INR 4.6 LPA, although the number varies with many factors such as experience, company, etc.
What is the difference between the Local variable and the Instance variable?
Variables are the basic unit of storage in a program. A Local variable is declared within a constructor but does not get any default value. They are created while entering the method and destroyed while exiting it. These variables also do not have any default variables. On the other hand, an Instance variable is declared outside a method but within a class. Any object of the class of instance variable has its own copy of the variable. These variables are evident to all methods of the class.
What is the difference between Collection and Collections?
The collection, a root level interface in the Java collection hierarchy, can be used to group numerous objects in a single unit. The objects grouped can be similar or different from each other. Common collection interfaces are set, list, map, stack, queue. Collections is a utility class found in Java that only contains static methods that operate on or return collections. Collections provide an easier method for developers to perform basic operations on elements without getting into the operation details. Most commonly used collection classes are: Collections.binarySearch(),Collections.sort(), Collections.max(), Collections.min(), Collections.reverse(), Collections.copy() .