T - The type of objects in this collection.java.util.Collection<T>, java.lang.Iterable<T>, java.util.Set<T>public interface DomainObjectSet<T>
extends java.util.Set<T>
| Modifier and Type | Method | Description | 
|---|---|---|
| java.util.List<T> | getAll() | Returns the elements of this set in the set's iteration order. | 
| T | getAt(int index) | Returns the element at the given index according to the set's iteration order. | 
java.util.List<T> getAll()
T getAt(int index) throws java.lang.IndexOutOfBoundsException
index - The index of the element to get.java.lang.IndexOutOfBoundsException