Java org.apache.commons.collections.set ListOrderedSet fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.collections.set ListOrderedSet fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.collections.set ListOrderedSet.

The text is from its open source code.

Constructor

ListOrderedSet()
Constructs a new empty ListOrderedSet using a HashSet and an ArrayList internally.

Method

booleanadd(Object object)
booleanaddAll(int index, Collection coll)
booleanaddAll(Collection coll)
ListasList()
Gets an unmodifiable view of the order of the Set.
ListOrderedSetdecorate(Set set)
Factory method to create an ordered set.
ListOrderedSetdecorate(List list)
Factory method to create an ordered set using the supplied list to retain order.
Objectget(int index)
Iteratoriterator()
intsize()
Returns the number of elements in this set (its cardinality).