java.lang.Object |
↳ |
com.atlassian.jira.util.collect.EnclosedIterable.ListResolver<T> |
Class Overview
Utility class for transforming a EnclosedIterable
into a List. Generally you only want to do
this when the size of the iterable is small as it loads all the elements into memory.
Summary
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
|
From interface
com.atlassian.jira.util.Function
R
|
get(D input)
Resolves an output where an input is given.
|
|
From interface
com.atlassian.jira.util.Resolver
O
|
get(I input)
Resolve an instance of the output type from an object of the input type.
|
|
From interface
com.atlassian.util.concurrent.Function
|
Public Constructors
public
EnclosedIterable.ListResolver
()
Public Methods
Returns
- a mutable ArrayList containing all elements of the iterable.