Uses of Class
com.yahoo.docproc.Call
Packages that use Call
-
Uses of Call in com.yahoo.docproc
Methods in com.yahoo.docproc that return CallModifier and TypeMethodDescriptionCallStack.findCall(com.yahoo.component.ComponentId processorId) Returns the next call to this processor id, or null if no such calls are leftCallStack.findCall(DocumentProcessor processor) Returns the next call to this processor, or null if no such calls are leftCallStack.getLastPopped()Returns the element that was last popped from this stack, or null if none have been popped or the stack is emptyCallStack.peek()Returns the next element without removing it, or null if there are no more elementsCallStack.pop()Returns and removes the next element, or null if there are no more elementsMethods in com.yahoo.docproc that return types with arguments of type CallModifier and TypeMethodDescriptionCallStack.iterator()Returns a modifiable ListIterator over all the remaining elements of this stack, starting by the next elementMethods in com.yahoo.docproc with parameters of type CallModifier and TypeMethodDescriptionAdds an element just after the first occurence of some other element on the stack.Adds multiple elements just after another given element on the stack.CallStack.addAfter(Call after, DocumentProcessor processor) Adds an element just after the first occurence of some other element on the stack.Adds an element just before the first occurence of some other element on the stack.Adds multiple elements just before the first occurence of some element on the stack.CallStack.addBefore(Call before, DocumentProcessor processor) Adds an element just before the first occurence of some element on the stack.Adds an element as the last element on this stackPush an element as the next element on this stackbooleanReturns whether this stack has this call (left)Removes the given call.