Class ContextManager.CtxStack
java.lang.Object
org.apache.derby.iapi.services.context.ContextManager.CtxStack
- Enclosing class:
ContextManager
The CtxStack implement a stack on top of an ArrayList (to avoid
the inherent overhead associated with java.util.Stack which is
built on top of java.util.Vector, which is fully
synchronized).
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
stack_
Internal list with all the elements of the stack. -
view_
Read-only view of the internal list. -
top_
-
-
Constructor Details
-
CtxStack
private CtxStack()
-
-
Method Details
-
push
-
pop
void pop() -
remove
-
top
Context top() -
isEmpty
boolean isEmpty() -
getUnmodifiableList
-