2015-09-07 11:44:36 -06:00
|
|
|
// containersindepth/Enumerations.java
|
2015-06-15 17:47:35 -07:00
|
|
|
// Java 1.0/1.1 Vector and Enumeration.
|
|
|
|
import java.util.*;
|
2015-11-11 20:20:04 -08:00
|
|
|
import onjava.*;
|
2015-06-15 17:47:35 -07:00
|
|
|
|
|
|
|
public class Enumerations {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
Vector<String> v =
|
|
|
|
new Vector<>(Countries.names(10));
|
|
|
|
Enumeration<String> e = v.elements();
|
|
|
|
while(e.hasMoreElements())
|
|
|
|
System.out.print(e.nextElement() + ", ");
|
|
|
|
// Produce an Enumeration from a Collection:
|
|
|
|
e = Collections.enumeration(new ArrayList<>());
|
|
|
|
}
|
2015-09-07 11:44:36 -06:00
|
|
|
}
|
|
|
|
/* Output:
|
2015-06-15 17:47:35 -07:00
|
|
|
ALGERIA, ANGOLA, BENIN, BOTSWANA, BURKINA FASO, BURUNDI,
|
|
|
|
CAMEROON, CAPE VERDE, CENTRAL AFRICAN REPUBLIC, CHAD,
|
2015-09-07 11:44:36 -06:00
|
|
|
*/
|