| java.util.AbstractSet org.ofbiz.base.util.OrderedSet
OrderedSet | public class OrderedSet extends AbstractSet (Code) | | OrderedSet - Set interface wrapper around a LinkedList
author: Andy Zeneski version: $Revision: 1.1 $ since: 2.0 |
Constructor Summary | |
public | OrderedSet() Constructs a set containing the elements of the specified
collection, in the order they are returned by the collection's
iterator. | public | OrderedSet(Collection c) Constructs a set containing the elements of the specified
collection, in the order they are returned by the collection's
iterator. |
OrderedSet | public OrderedSet()(Code) | | Constructs a set containing the elements of the specified
collection, in the order they are returned by the collection's
iterator.
|
OrderedSet | public OrderedSet(Collection c)(Code) | | Constructs a set containing the elements of the specified
collection, in the order they are returned by the collection's
iterator.
Parameters: c - the collection whose elements are to be placed into this set. |
|
|