Uses of Class
org.bytedeco.javacpp.PointerScope
-
Packages that use PointerScope Package Description org.bytedeco.javacpp Contains the main set of classes for JavaCPP at runtime. -
-
Uses of PointerScope in org.bytedeco.javacpp
Fields in org.bytedeco.javacpp with type parameters of type PointerScope Modifier and Type Field Description (package private) static java.lang.ThreadLocal<java.util.Deque<PointerScope>>
PointerScope. scopeStack
A thread-local stack ofPointerScope
objects.Methods in org.bytedeco.javacpp that return PointerScope Modifier and Type Method Description PointerScope
PointerScope. attach(Pointer p)
Pushes the Pointer onto thepointerStack
of this Scope and callsPointer.retainReference()
.PointerScope
PointerScope. detach(Pointer p)
Removes the Pointer from thepointerStack
of this Scope and callsPointer.releaseReference()
.PointerScope
PointerScope. extend()
static PointerScope
PointerScope. getInnerScope()
ReturnsscopeStack.get().peek()
, the last opened scope not yet closed.Methods in org.bytedeco.javacpp that return types with arguments of type PointerScope Modifier and Type Method Description static java.util.Iterator<PointerScope>
PointerScope. getScopeIterator()
ReturnsscopeStack.get().iterator()
, all scopes not yet closed.
-