Recycler.C<T>public abstract class AbstractRecyclerC<T> extends java.lang.Object implements Recycler.C<T>
| Constructor | Description |
|---|---|
AbstractRecyclerC() |
| Modifier and Type | Method | Description |
|---|---|---|
void |
destroy(T value) |
Destroy the data.
|
abstract T |
newInstance(int sizing) |
Create a new empty instance of the given size.
|
abstract void |
recycle(T value) |
Recycle the data.
|
public abstract T newInstance(int sizing)
Recycler.CnewInstance in interface Recycler.C<T>public abstract void recycle(T value)
Recycler.Crecycle in interface Recycler.C<T>public void destroy(T value)
Recycler.Cdestroy in interface Recycler.C<T>