Uses of Class
com.yahoo.docproc.Call

Packages that use Call
Package
Description
 
  • Uses of Call in com.yahoo.docproc

    Methods in com.yahoo.docproc that return Call
    Modifier and Type
    Method
    Description
    CallStack.findCall(com.yahoo.component.ComponentId processorId)
    Returns the next call to this processor id, or null if no such calls are left
    CallStack.findCall(DocumentProcessor processor)
    Returns the next call to this processor, or null if no such calls are left
    CallStack.getLastPopped()
    Returns the element that was last popped from this stack, or null if none have been popped or the stack is empty
    CallStack.peek()
    Returns the next element without removing it, or null if there are no more elements
    CallStack.pop()
    Returns and removes the next element, or null if there are no more elements
    Methods in com.yahoo.docproc that return types with arguments of type Call
    Modifier and Type
    Method
    Description
    CallStack.iterator()
    Returns a modifiable ListIterator over all the remaining elements of this stack, starting by the next element
    Methods in com.yahoo.docproc with parameters of type Call
    Modifier and Type
    Method
    Description
    CallStack.addAfter(Call after, Call call)
    Adds an element just after the first occurence of some other element on the stack.
    CallStack.addAfter(Call after, CallStack callStack)
    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.
    CallStack.addBefore(Call before, Call call)
    Adds an element just before the first occurence of some other element on the stack.
    CallStack.addBefore(Call before, CallStack callStack)
    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.
    CallStack.addLast(Call call)
    Adds an element as the last element on this stack
    CallStack.addNext(Call call)
    Push an element as the next element on this stack
    boolean
    CallStack.contains(Call call)
    Returns whether this stack has this call (left)
    CallStack.remove(Call call)
    Removes the given call.