Package de.alpharogroup.collections.list
Class VectorExtensions
- java.lang.Object
-
- de.alpharogroup.collections.list.VectorExtensions
-
public class VectorExtensions extends java.lang.ObjectThe extensionsVectorExtensionsclass can be used withVectorobjects.
-
-
Constructor Summary
Constructors Constructor Description VectorExtensions()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <T> java.util.Vector<T>toVector(java.util.Enumeration<T> enumaration)Converts the given enumaration to a Vector.
-
-
-
Method Detail
-
toVector
public static <T> java.util.Vector<T> toVector(java.util.Enumeration<T> enumaration)
Converts the given enumaration to a Vector.- Type Parameters:
T- the generic type- Parameters:
enumaration- The Enumeration to convert.- Returns:
- A new Vector with the content of the given Enumeration.
-
-