- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中net.sf.saxon.expr.XPathContextMajor.getController()
方法的一些代码示例,展示了XPathContextMajor.getController()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XPathContextMajor.getController()
方法的具体详情如下:
包路径:net.sf.saxon.expr.XPathContextMajor
类名称:XPathContextMajor
方法名:getController
暂无
代码示例来源:origin: net.sf.saxon/Saxon-HE
/**
* Set an object that will be used to resolve URIs used in
* fn:unparsed-text() and related functions.
*
* @param resolver An object that implements the UnparsedTextURIResolver interface, or
* null.
* @since 9.5
*/
public void setUnparsedTextURIResolver(UnparsedTextURIResolver resolver) {
contextObject.getController().setUnparsedTextURIResolver(resolver);
}
代码示例来源:origin: net.sf.saxon/Saxon-HE
/**
* Get the collection finder associated with this configuration. This is used to dereference
* collection URIs used in the fn:collection and fn:uri-collection functions
*
* @return the CollectionFinder to be used
* @since 9.7
*/
public CollectionFinder getCollectionFinder() {
return contextObject.getController().getCollectionFinder();
}
代码示例来源:origin: net.sf.saxon/Saxon-HE
/**
* Set the collection finder associated with this configuration. This is used to dereference
* collection URIs used in the fn:collection and fn:uri-collection functions
*
* @param cf the CollectionFinder to be used
* @since 9.7
*/
public void setCollectionFinder(CollectionFinder cf) {
contextObject.getController().setCollectionFinder(cf);
}
代码示例来源:origin: net.sf.saxon/Saxon-HE
/**
* Get the CollectionURIResolver used for resolving references to collections.
* If none has been set on the Controller, returns the
* CollectionURIResolver registered with the Configuration
*
* @return the resolver for references to collections
* @since 9.4
* @deprecated since 9.7 - use {@link #getCollectionFinder()}
*/
public CollectionURIResolver getCollectionURIResolver() {
return contextObject.getController().getCollectionURIResolver();
}
代码示例来源:origin: net.sf.saxon/Saxon-HE
/**
* Set the CollectionURIResolver used for resolving collection URIs.
* Defaults to the CollectionURIResolver registered with the Configuration
*
* @param resolver the resolver for references to collections
* @since 9.4
* @deprecated since 9.7 - use {@link #setCollectionFinder(CollectionFinder)}
*/
public void setCollectionURIResolver(CollectionURIResolver resolver) {
contextObject.getController().setCollectionURIResolver(resolver);
}
代码示例来源:origin: net.sf.saxon/Saxon-HE
/**
* Get the URI resolver for unparsed text.
*
* @return the user-supplied unparsed text URI resolver if there is one, or the
* system-defined one otherwise
* @since 9.5
*/
public UnparsedTextURIResolver getUnparsedTextURIResolver() {
return contextObject.getController().getUnparsedTextURIResolver();
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon
/**
* Get the URI resolver for unparsed text.
*
* @return the user-supplied unparsed text URI resolver if there is one, or the
* system-defined one otherwise
* @since 9.5
*/
public UnparsedTextURIResolver getUnparsedTextURIResolver() {
return contextObject.getController().getUnparsedTextURIResolver();
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon
/**
* Get the collection finder associated with this configuration. This is used to dereference
* collection URIs used in the fn:collection and fn:uri-collection functions
*
* @return the CollectionFinder to be used
* @since 9.7
*/
public CollectionFinder getCollectionFinder() {
return contextObject.getController().getCollectionFinder();
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon
/**
* Set an object that will be used to resolve URIs used in
* fn:unparsed-text() and related functions.
*
* @param resolver An object that implements the UnparsedTextURIResolver interface, or
* null.
* @since 9.5
*/
public void setUnparsedTextURIResolver(UnparsedTextURIResolver resolver) {
contextObject.getController().setUnparsedTextURIResolver(resolver);
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon
/**
* Set the CollectionURIResolver used for resolving collection URIs.
* Defaults to the CollectionURIResolver registered with the Configuration
*
* @param resolver the resolver for references to collections
* @since 9.4
* @deprecated since 9.7 - use {@link #setCollectionFinder(CollectionFinder)}
*/
public void setCollectionURIResolver(CollectionURIResolver resolver) {
contextObject.getController().setCollectionURIResolver(resolver);
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon
/**
* Get the CollectionURIResolver used for resolving references to collections.
* If none has been set on the Controller, returns the
* CollectionURIResolver registered with the Configuration
*
* @return the resolver for references to collections
* @since 9.4
* @deprecated since 9.7 - use {@link #getCollectionFinder()}
*/
public CollectionURIResolver getCollectionURIResolver() {
return contextObject.getController().getCollectionURIResolver();
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon
/**
* Set the collection finder associated with this configuration. This is used to dereference
* collection URIs used in the fn:collection and fn:uri-collection functions
*
* @param cf the CollectionFinder to be used
* @since 9.7
*/
public void setCollectionFinder(CollectionFinder cf) {
contextObject.getController().setCollectionFinder(cf);
}
代码示例来源:origin: net.sf.saxon/Saxon-HE
/**
* Get the current mode.
*
* @return the current mode. May return null if the current mode is the default mode.
*/
public Component.M getCurrentMode() {
Component.M m = currentMode;
if (m == null) {
RuleManager rm = getController().getRuleManager();
if (rm != null) {
return rm.getUnnamedMode().getDeclaringComponent();
} else {
return null;
}
} else {
return m;
}
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon
/**
* Get the current mode.
*
* @return the current mode. May return null if the current mode is the default mode.
*/
public Component.M getCurrentMode() {
Component.M m = currentMode;
if (m == null) {
RuleManager rm = getController().getRuleManager();
if (rm != null) {
return rm.getUnnamedMode().getDeclaringComponent();
} else {
return null;
}
} else {
return m;
}
}
代码示例来源:origin: net.sourceforge.saxon/saxon
/**
* Get the Base URI for the node, that is, the URI used for resolving a relative URI contained
* in the node. This will be the same as the System ID unless xml:base has been used.
*
* @return the base URI of the node
*/
public String getBaseURI() {
if (node == null) {
// the base URI of a constructed parentless document or element node is the static base URI of the
// instruction/expression that created it
PipelineConfiguration pipe = savedXPathContext.getController().makePipelineConfiguration();
return pipe.getLocationProvider().getSystemId(instruction.getLocationId());
} else {
return node.getBaseURI();
}
}
代码示例来源:origin: org.opengis.cite.saxon/saxon9
/**
* Get the Base URI for the node, that is, the URI used for resolving a relative URI contained
* in the node. This will be the same as the System ID unless xml:base has been used.
*
* @return the base URI of the node
*/
public String getBaseURI() {
if (node == null) {
// the base URI of a constructed parentless document or element node is the static base URI of the
// instruction/expression that created it
PipelineConfiguration pipe = savedXPathContext.getController().makePipelineConfiguration();
return pipe.getLocationProvider().getSystemId(instruction.getLocationId());
} else {
return node.getBaseURI();
}
}
代码示例来源:origin: net.sourceforge.saxon/saxon
/**
* Get a PullProvider that delivers the stream of events corresponding to the tree rooted at this virtual node
* @return the PullProvider for the events in the virtual tree
*/
public PullProvider getPuller() {
if (node == null) {
VirtualTreeWalker walker = new VirtualTreeWalker(instruction, savedXPathContext);
walker.setPipelineConfiguration(savedXPathContext.getController().makePipelineConfiguration());
walker.setNameCode(getNameCode());
return walker;
} else {
return TreeWalker.makeTreeWalker(node);
}
}
代码示例来源:origin: org.opengis.cite.saxon/saxon9
/**
* Get a PullProvider that delivers the stream of events corresponding to the tree rooted at this virtual node
* @return the PullProvider for the events in the virtual tree
*/
public PullProvider getPuller() {
if (node == null) {
VirtualTreeWalker walker = new VirtualTreeWalker(instruction, savedXPathContext);
walker.setPipelineConfiguration(savedXPathContext.getController().makePipelineConfiguration());
walker.setNameCode(getNameCode());
return walker;
} else {
return TreeWalker.makeTreeWalker(node);
}
}
代码示例来源:origin: org.opengis.cite.saxon/saxon9
/**
* Evaluate the variable. That is,
* get the value of the select expression if present or the content
* of the element otherwise, either as a tree or as a sequence
*/
public ValueRepresentation getSelectValue(XPathContext context) throws XPathException {
if (select==null) {
throw new AssertionError("*** No select expression for global variable $" +
getVariableQName().getDisplayName() + "!!");
} else {
XPathContextMajor c2 = context.newCleanContext();
c2.setOrigin(this);
UnfailingIterator initialNode =
SingletonIterator.makeIterator(c2.getController().getContextForGlobalVariables());
initialNode.next();
c2.setCurrentIterator(initialNode);
if (stackFrameMap != null) {
c2.openStackFrame(stackFrameMap);
}
return ExpressionTool.evaluate(select, evaluationMode, c2, referenceCount);
}
}
代码示例来源:origin: net.sourceforge.saxon/saxon
/**
* Evaluate the variable. That is,
* get the value of the select expression if present or the content
* of the element otherwise, either as a tree or as a sequence
*/
public ValueRepresentation getSelectValue(XPathContext context) throws XPathException {
if (select==null) {
throw new AssertionError("*** No select expression for global variable $" +
getVariableQName().getDisplayName() + "!!");
} else {
XPathContextMajor c2 = context.newCleanContext();
c2.setOrigin(this);
UnfailingIterator initialNode =
SingletonIterator.makeIterator(c2.getController().getContextForGlobalVariables());
initialNode.next();
c2.setCurrentIterator(initialNode);
if (stackFrameMap != null) {
c2.openStackFrame(stackFrameMap);
}
return ExpressionTool.evaluate(select, evaluationMode, c2, referenceCount);
}
}
这个问题在这里已经有了答案: Difference between JSP EL, JSF EL and Unified EL [closed] (2 个回答) 5年前关闭。 前段时间我读过关于“Co
在阅读德州仪器为其 SensorTag 提供的示例代码时我发现了以下代码段。 void SensorTagIO_processCharChangeEvt(uint8_t paramID) {
我正在尝试编写支持简单语法的宏,例如: boo: 3 and foo: go or bar: 4+2 这是我试过的: macro_rules! solr { ($TOPIC:ident : $
有人知道 C 中 if(Expr,Expr) 结构的逻辑含义是什么吗?喜欢: if(lcn = (ULONG)GetLCN(index),lcn) 最佳答案 当您有“,”时,表达式的计算结果为列表中的
我花了几个小时试图让下面的代码工作 PATH="C:\Ben\MyPictures" echo $PATH MY=`expr 2 + 2` 但这不会起作用,因为“expr: c
我尝试将两个数字(实际上这些是某些远程执行命令的输出)分配给 2 个不同的变量,比如说 A 和 B。 当我回显 A 和 B 时,它们显示值: echo $A 809189640755 echo $B
我该怎么做才能使以下工作正常进行? 我需要创建一个接受 Expr 列表并返回 Expr 的函数(Expr 列表 -> Epxr)。 type DataObject() = let data =
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: bash: $[] vs. $(()) $(( expr )) 构造可用于整数 math在 bash 中,例
我很难理解这里的声明: for( int i=0; i< out_length; i++){ int num=i < length_a ? array_a[i] : 0; ... ... 我
我只是好奇。我想知道表达式是否有特定原因 var &= expr 行为方式与不同 var = var && expr. 看起来第一个表达式中的表达式正在执行,而不管 var 上的 false 值。 我
在 bash 中,我不明白为什么第三个命令不正确: [[ 1 -eq 1 ]] # $? is 0 [[ ! 1 -eq 1 ]] # $? is 1 [[ ! ! 1 -
这个问题在这里已经有了答案: Lifetime of temporaries (2 个答案) 关闭 8 年前。 我有一个统计管理器,它通过测量方法执行所需的时间来检查我的应用程序性能。它的用法是这样
我不确定这里是否有人问过这个问题,但我在这里很困惑。我正在读这本很棒的书,名为《Advanced R》,作者为 Hadley Wickham,来自 here . 这里已经描述了一个名为cement的函
我正在通过解析类似 Excel 的公式来生成 sql 请求。 因此,对于给定的公式,我收到以下请求: SELECT IF(COL1='Y', SUM(EXPR),NULL) FROM Table 我没
我看到了一些非常奇怪的东西,我无法解释。我在猜测一些我不熟悉的 C# 边缘情况,或者运行时/发射器中的错误? 我有以下方法: public static bool HistoryMessageExis
我在玩Prefix和 Postfix运算符(分别为 @ 和 //),我遇到了以下问题。 给定以下代码,它们以相同的方式进行评估: Hold[MatrixPlot@Sort@data] // FullF
有没有人在使用 Pandas 时解决了这个 pylint 问题? C:525,59: Comparison to True should be just 'expr' or 'expr is True
我正在尝试制作一个可以按以下方式调用的宏: mactest!(some::Path[1, 2, AnotherName[3, 4]]) 这相当于以下内容: make_result( "some
这两种方法有区别吗? public String toString() { return this.from.toString() + this.to.toString(); } public
我有一个小问题。如果你想测试这里的两个 bash 脚本。这是工作 #!/bin/bash N=40 while [ "$N" -gt 0 ] do echo $N N=`expr $N - 1` do
我是一名优秀的程序员,十分优秀!