Create Java ArrayList From Enumeration Example

  1. /*
  2.   Create Java ArrayList From Enumeration Example
  3.   This java example shows how to create an ArrayList from any Enumeration object
  4.   using list method of Collections class.
  5. */
  6.  
  7. import java.util.ArrayList;
  8. import java.util.Collections;
  9. import java.util.Enumeration;
  10. import java.util.Vector;
  11.  
  12. public class CreateArrayListFromEnumerationExample {
  13.  
  14. public static void main(String[] args) {
  15.  
  16. //create a Vector object
  17. Vector v = new Vector();
  18.  
  19. //Add elements to Vector
  20. v.add("A");
  21. v.add("B");
  22. v.add("D");
  23. v.add("E");
  24. v.add("F");
  25.  
  26. System.out.println("Vector contains : " + v);
  27.  
  28. /*
  29.   To create ArrayList from any Enumeration, use
  30.   static ArrayList list(Enumeration e) method of Collections class.
  31.  
  32.   This method returns the ArrayList containing the elements returned by
  33.   specified Enumeration object in order they are returned.
  34.   */
  35.  
  36. //Get Enumeration over Vector
  37. Enumeration e = v.elements();
  38.  
  39. //Create ArrayList from Enumeration of Vector
  40. ArrayList aList = Collections.list(e);
  41.  
  42. System.out.println("Arraylist contains : " + aList);
  43.  
  44. }
  45. }
  46.  
  47. /*
  48. Output would be
  49. Vector Contains : [A, B, D, E, F]
  50. Arraylist contains : [A, B, D, E, F]
  51. */

Visit Java Example Forums to request Java examples or ask Java questions!
OR
Try out our new Java Search Engine

Related Java Examples





Suggested Reading

Oracle Magazine
Contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more.
Cost: FREE

View/Subscribe
NASA Tech Briefs
Features exclusive reports of innovations developed by NASA and its industry partners/contractors that can be applied to develop new/improved products and solve engineering or manufacturing problems.
Cost: FREE

View/Subscribe
FierceBiotech IT
Is a free, easy to read weekly email service that brings must read biotech IT news to senior biotech, pharma, and IT executives.
Cost: FREE

View/Subscribe
Simply SQL
Simply SQL is a practical step-by-step guide to writing SQL.
Cost: FREE

View/Subscribe
Simply JavaScript
Packed with full-color examples, Simply JavaScript is all you need to start programming in JavaScript the right way.
Cost: FREE

View/Subscribe
PCMag.com's What's New Now
Lance Ulanoff, Editor in Chief of the PC Magazine Network, brings you this twice-weekly roundup of the latest top tech stories, the best new product reviews, plus special offers from Ziff Davis and its partners.
Cost: FREE

View/Subscribe

Could not find what you are looking for? Search Java Examples




Feel Tired? Read Jokes & Inspirational Stories, Play Games!