Package com.saxonica.functions.extfn
Class Starting
- java.lang.Object
- 
- net.sf.saxon.functions.AbstractFunction
- 
- net.sf.saxon.functions.SystemFunction
- 
- com.saxonica.functions.extfn.Starting
 
 
 
- 
- All Implemented Interfaces:
- Callable,- Function,- GroundedValue,- Item,- Sequence
 - Direct Known Subclasses:
- Starting.ItemsAfter,- Starting.ItemsFrom
 
 public abstract class Starting extends SystemFunction This class supports the two extension functions saxon:items-from and saxon:items-after. These functions take two arguments: the first is a sequence of items, the second is a function used as a predicate to determine the first item to be included in the result. The functions differ in whether the matching item is included in the result or not.
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classStarting.ItemsAfterstatic classStarting.ItemsFrom
 - 
Constructor SummaryConstructors Constructor Description Starting()
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description Sequencecall(XPathContext context, Sequence[] arguments)Evaluate this function call at run-timeprotected abstract booleanincludeMatchingItem()- 
Methods inherited from class net.sf.saxon.functions.SystemFunctiondependsOnContextItem, dynamicCall, equals, export, exportAdditionalArguments, exportAttributes, fixArguments, getArity, getCardinality, getCompilerName, getContextNode, getDescription, getDetails, getErrorCodeForTypeErrors, getFunctionItemType, getFunctionName, getIntegerBounds, getNetCost, getOperandRoles, getRequiredType, getResultItemType, getResultItemType, getRetainedStaticContext, getSpecialProperties, getStaticBaseUriString, getStreamerName, getUniStringArg, hashCode, importAttributes, isSequenceVariadic, isTrustedResultType, makeCall, makeFunction, makeFunctionCall, makeOptimizedFunctionCall, resultIfEmpty, setArity, setDetails, setRetainedStaticContext, supplyTypeInformation, toShortString, toString, typeCheckCaller
 - 
Methods inherited from class net.sf.saxon.functions.AbstractFunctionatomize, deepEquals, effectiveBooleanValue, getAnnotations, getSerialNumber, getUnicodeStringValue, isArray, isMap, makeNewContext, simplify, typeCheck
 - 
Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface net.sf.saxon.om.GroundedValueasIterable, concatenate, containsNode, materialize
 - 
Methods inherited from interface net.sf.saxon.om.ItemgetLength, getStringValue, head, isStreamed, itemAt, iterate, reduce, subsequence
 - 
Methods inherited from interface net.sf.saxon.om.SequencemakeRepeatable
 
- 
 
- 
- 
- 
Method Detail- 
includeMatchingItemprotected abstract boolean includeMatchingItem() 
 - 
callpublic Sequence call(XPathContext context, Sequence[] arguments) throws XPathException Evaluate this function call at run-time- Parameters:
- context- The XPath dynamic evaluation context
- arguments- The values of the arguments to the function call.
- Returns:
- the results of the function, as a sequence of arrays
- Throws:
- XPathException- if a dynamic error occurs during evaluation of the function. The Saxon run-time code will add information about the error location.
 
 
- 
 
-