public static interface ImmutableExport.Iterable extends java.lang.Iterable<ImmutableExport>
Modifier and Type | Method and Description |
---|---|
ImmutableExport |
get(int index)
Returns the ImmutableExports at the specified position in this list.
|
boolean |
isEmpty()
Returns true if this list contains no ImmutableExports
|
java.util.Iterator<ImmutableExport> |
iterator() |
int |
searchByName(java.lang.String name)
Searches the exports for the specified name using the binary
search algorithm.
|
int |
size()
Returns the number of ImmutableExports in this list.
|
ImmutableExport[] |
toArray() |
boolean isEmpty()
int size()
ImmutableExport get(int index)
index
- index of the ImmutableExport to returnjava.lang.IndexOutOfBoundsException
- if the index is out of range
(index < 0 || index >= size())java.util.Iterator<ImmutableExport> iterator()
iterator
in interface java.lang.Iterable<ImmutableExport>
int searchByName(java.lang.String name)
name
- the name to be searched.ImmutableExport[] toArray()