Method Summary |
|
public static Enumeration | append(Enumeration e1, Enumeration e2) Append one enumeration to another.
Elements are evaluated lazily.
Parameters: e1 - the first enumeration. Parameters: e2 - the subsequent enumeration. |
public static Enumeration | asEnumeration(Iterator iter) Adapt the specified Iterator to the Enumeration interface.
Parameters: iter - the Iterator to adapt. |
public static Iterator | asIterator(Enumeration e) Adapt the specified Enumeration to the Iterator interface.
Parameters: e - the Enumeration to adapt. |
public static boolean | equals(Vector v1, Vector v2) Please use Vector.equals() or List.equals().
Parameters: v1 - the first vector. Parameters: v2 - the second vector. |
public static boolean | equals(Dictionary d1, Dictionary d2) Dictionary does not have an equals.
Please use Map.equals().
Follows the equals contract of Java 2's Map.
Parameters: d1 - the first directory. Parameters: d2 - the second directory. |
public static void | putAll(Dictionary m1, Dictionary m2) Dictionary does not know the putAll method. |