Package org.scijava.object
Interface LazyObjects<T>
-
- All Superinterfaces:
Supplier<Collection<T>>
public interface LazyObjects<T> extends Supplier<Collection<T>>
Interface for objects created lazily. This interface provides a mechanism to register a callback of sorts, so that theObjectIndexcan request creation of objects only when they are needed.- Author:
- Curtis Rueden
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<T>get()Gets the collection of objects.
-
-
-
Method Detail
-
get
Collection<T> get()
Gets the collection of objects.
-
-