Package com.io7m.jspatial.api.quadtrees
Interface QuadTreeSupplierIType
-
- All Known Implementing Classes:
QuadTreeSupplierI
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface QuadTreeSupplierITypeThe type of constructors for trees.- Since:
- 3.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <A> QuadTreeIType<A>create(QuadTreeConfigurationI config)Create a new tree based on the given configuration.
-
-
-
Method Detail
-
create
<A> QuadTreeIType<A> create(QuadTreeConfigurationI config)
Create a new tree based on the given configuration.- Type Parameters:
A- The type of objects in the tree- Parameters:
config- The configuration- Returns:
- A new tree
-
-