Uses of Interface
org.bytedeco.javacpp.Pointer.Deallocator
-
Packages that use Pointer.Deallocator Package Description org.bytedeco.javacpp Contains the main set of classes for JavaCPP at runtime. -
-
Uses of Pointer.Deallocator in org.bytedeco.javacpp
Classes in org.bytedeco.javacpp that implement Pointer.Deallocator Modifier and Type Class Description protected static class
Pointer.CustomDeallocator
APointer.Deallocator
that calls, during garbage collection, a method with signaturestatic void deallocate()
from the Pointer object passed to the constructor and that accepts it as argument.(package private) static class
Pointer.DeallocatorReference
A subclass ofPhantomReference
that also acts as a linked list to keep their references alive until they get garbage collected.protected static class
Pointer.NativeDeallocator
APointer.Deallocator
that calls, during garbage collection, a native function.(package private) static class
Pointer.ProxyDeallocator
APointer.Deallocator
that keeps and uses a strong reference to a Buffer or another Pointer.Fields in org.bytedeco.javacpp declared as Pointer.Deallocator Modifier and Type Field Description private Pointer.Deallocator
Pointer. deallocator
The deallocator associated with this Pointer that should be called on garbage collection.(package private) Pointer.Deallocator
Pointer.DeallocatorReference. deallocator
Methods in org.bytedeco.javacpp that return Pointer.Deallocator Modifier and Type Method Description protected Pointer.Deallocator
Pointer. deallocator()
ReturnsPointer.deallocator
.Methods in org.bytedeco.javacpp with parameters of type Pointer.Deallocator Modifier and Type Method Description protected <P extends Pointer>
PPointer. deallocator(Pointer.Deallocator deallocator)
Sets the deallocator and returns this.Constructors in org.bytedeco.javacpp with parameters of type Pointer.Deallocator Constructor Description DeallocatorReference(Pointer p, Pointer.Deallocator deallocator)
-