public abstract class AbstractRecyclerC<T> extends java.lang.Object implements Recycler.C<T>
| Constructor and Description |
|---|
AbstractRecyclerC() |
| Modifier and Type | Method and 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>