Uses of Class
org.apache.jasper.util.FastRemovalDequeue.Entry
-
Packages that use FastRemovalDequeue.Entry Package Description org.apache.jasper.compiler org.apache.jasper.servlet org.apache.jasper.util -
-
Uses of FastRemovalDequeue.Entry in org.apache.jasper.compiler
Methods in org.apache.jasper.compiler that return FastRemovalDequeue.Entry Modifier and Type Method Description FastRemovalDequeue.EntryJspRuntimeContext. push(JspServletWrapper jsw)Push a newly compiled JspServletWrapper into the queue at first execution of jsp.Methods in org.apache.jasper.compiler with parameters of type FastRemovalDequeue.Entry Modifier and Type Method Description voidJspRuntimeContext. makeYoungest(FastRemovalDequeue.Entry unloadHandle)Push unloadHandle for JspServletWrapper to front of the queue. -
Uses of FastRemovalDequeue.Entry in org.apache.jasper.servlet
Methods in org.apache.jasper.servlet that return FastRemovalDequeue.Entry Modifier and Type Method Description FastRemovalDequeue.EntryJspServletWrapper. getUnloadHandle() -
Uses of FastRemovalDequeue.Entry in org.apache.jasper.util
Fields in org.apache.jasper.util declared as FastRemovalDequeue.Entry Modifier and Type Field Description protected FastRemovalDequeue.EntryFastRemovalDequeue. firstFirst element of the queue.protected FastRemovalDequeue.EntryFastRemovalDequeue. lastLast element of the queue.Methods in org.apache.jasper.util that return FastRemovalDequeue.Entry Modifier and Type Method Description FastRemovalDequeue.EntryFastRemovalDequeue. push(T object)Adds an object to the start of the list and returns the entry created for said object.FastRemovalDequeue.EntryFastRemovalDequeue. unpop(T object)Adds an object to the end of the list and returns the entry created for said object.Methods in org.apache.jasper.util with parameters of type FastRemovalDequeue.Entry Modifier and Type Method Description voidFastRemovalDequeue. moveFirst(FastRemovalDequeue.Entry element)Moves the element in front.voidFastRemovalDequeue. moveLast(FastRemovalDequeue.Entry element)Moves the element to the back.voidFastRemovalDequeue. remove(FastRemovalDequeue.Entry element)Removes any element of the list and returns its content.
-