public abstract class StandardFunction extends Object
Modifier and Type | Class and Description |
---|---|
static class |
StandardFunction.Entry
An entry in the table describing the properties of a function
|
Modifier and Type | Field and Description |
---|---|
static int |
AS_ARG0 |
static int |
AS_PRIM_ARG0 |
static int |
BASE |
static int |
CORE
Categories of functions, bit significant
|
static int |
DCOLL |
static int |
DEPENDS_ON_STATIC_CONTEXT |
static Sequence |
EMPTY |
static int |
FOCUS |
static int |
GIVE |
static int |
INTERNAL |
static int |
LOOK
Classification of function arguments for serialization purposes; note that values must not conflict
with bit settings used for cardinalities
|
static int |
NS |
static int |
ONE
Local names used for cardinality values
|
static int |
OPT |
static int |
PLUS |
static int |
STAR |
static int |
TAKE |
static int |
USE_WHEN |
static int |
WALK |
static int |
XPATH30 |
static int |
XQUPDATE |
static int |
XSLT |
static int |
XSLT30 |
Modifier and Type | Method and Description |
---|---|
static StandardFunction.Entry |
getFunction(String name,
int arity)
Get the table entry for the function with a given name
|
static StandardFunction.Entry |
makeEntry(String name,
Class implementationClass,
int opcode,
int minArguments,
int maxArguments,
ItemType itemType,
int cardinality,
int applicability,
int properties)
Make a table entry describing the signature of a function, with a reference to the implementation class.
|
static StandardFunction.Entry |
register(String name,
Class implementationClass,
int opcode,
int minArguments,
int maxArguments,
ItemType itemType,
int cardinality,
int applicability,
int properties)
Register a system function in the table of function details.
|
public static Sequence EMPTY
public static final int CORE
public static final int XSLT
public static final int USE_WHEN
public static final int XQUPDATE
public static final int XPATH30
public static final int INTERNAL
public static final int XSLT30
public static final int ONE
public static final int OPT
public static final int STAR
public static final int PLUS
public static final int LOOK
public static final int TAKE
public static final int GIVE
public static final int WALK
public static final int AS_ARG0
public static final int AS_PRIM_ARG0
public static final int FOCUS
public static final int BASE
public static final int NS
public static final int DCOLL
public static final int DEPENDS_ON_STATIC_CONTEXT
public static StandardFunction.Entry register(String name, Class implementationClass, int opcode, int minArguments, int maxArguments, ItemType itemType, int cardinality, int applicability, int properties)
name
- the function nameimplementationClass
- the class used to implement the functionopcode
- identifies the function when a single class implements several functionsminArguments
- the minimum number of arguments requiredmaxArguments
- the maximum number of arguments alloweditemType
- the item type of the result of the functioncardinality
- the cardinality of the result of the functionapplicability
- the host languages (and versions thereof) in which this function is availableproperties
- public static StandardFunction.Entry makeEntry(String name, Class implementationClass, int opcode, int minArguments, int maxArguments, ItemType itemType, int cardinality, int applicability, int properties)
name
- the function nameimplementationClass
- the class used to implement the functionopcode
- identifies the function when a single class implements several functionsminArguments
- the minimum number of arguments requiredmaxArguments
- the maximum number of arguments alloweditemType
- the item type of the result of the functioncardinality
- the cardinality of the result of the functionapplicability
- the host languages (and versions of) in which this function is availablepublic static StandardFunction.Entry getFunction(String name, int arity)
name
- the name of the function. This may be an unprefixed local-name for functions in the
system namespace, or may use the conventional prefix "saxon:" in the case of Saxon extension functions
that are specially recognizedarity
- the number of arguments of the function, or -1 if any arity will doCopyright (c) 2004-2013 Saxonica Limited. All rights reserved.