org.apache.xpath.operations.Number类的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(4.6k)|赞(0)|评价(0)|浏览(114)

本文整理了Java中org.apache.xpath.operations.Number类的一些代码示例,展示了Number类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Number类的具体详情如下:
包路径:org.apache.xpath.operations.Number
类名称:Number

Number介绍

[英]The 'number()' operation expression executer.
[中]“number()”操作表达式执行器。

代码示例

代码示例来源:origin: robovm/robovm

/**
 * Compile a 'number(...)' operation.
 * 
 * @param opPos The current position in the m_opMap array.
 *
 * @return reference to {@link org.apache.xpath.operations.Number} instance.
 *
 * @throws TransformerException if a error occurs creating the Expression.
 */
protected Expression number(int opPos) throws TransformerException
{
 return compileUnary(new org.apache.xpath.operations.Number(), opPos);
}

代码示例来源:origin: xalan/xalan

/**
 * Compile a 'number(...)' operation.
 * 
 * @param opPos The current position in the m_opMap array.
 *
 * @return reference to {@link org.apache.xpath.operations.Number} instance.
 *
 * @throws TransformerException if a error occurs creating the Expression.
 */
protected Expression number(int opPos) throws TransformerException
{
 return compileUnary(new org.apache.xpath.operations.Number(), opPos);
}

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

/**
 * Compile a 'number(...)' operation.
 * 
 * @param opPos The current position in the m_opMap array.
 *
 * @return reference to {@link org.apache.xpath.operations.Number} instance.
 *
 * @throws TransformerException if a error occurs creating the Expression.
 */
protected Expression number(int opPos) throws TransformerException
{
 return compileUnary(new org.apache.xpath.operations.Number(), opPos);
}

代码示例来源:origin: org.apache.xalan/com.springsource.org.apache.xalan

/**
 * Compile a 'number(...)' operation.
 * 
 * @param opPos The current position in the m_opMap array.
 *
 * @return reference to {@link org.apache.xpath.operations.Number} instance.
 *
 * @throws TransformerException if a error occurs creating the Expression.
 */
protected Expression number(int opPos) throws TransformerException
{
 return compileUnary(new org.apache.xpath.operations.Number(), opPos);
}

代码示例来源:origin: ibinti/bugvm

/**
 * Compile a 'number(...)' operation.
 * 
 * @param opPos The current position in the m_opMap array.
 *
 * @return reference to {@link org.apache.xpath.operations.Number} instance.
 *
 * @throws TransformerException if a error occurs creating the Expression.
 */
protected Expression number(int opPos) throws TransformerException
{
 return compileUnary(new org.apache.xpath.operations.Number(), opPos);
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * Compile a 'number(...)' operation.
 * 
 * @param opPos The current position in the m_opMap array.
 *
 * @return reference to {@link org.apache.xpath.operations.Number} instance.
 *
 * @throws TransformerException if a error occurs creating the Expression.
 */
protected Expression number(int opPos) throws TransformerException
{
 return compileUnary(new org.apache.xpath.operations.Number(), opPos);
}

代码示例来源:origin: FlexoVM/flexovm

/**
 * Compile a 'number(...)' operation.
 * 
 * @param opPos The current position in the m_opMap array.
 *
 * @return reference to {@link org.apache.xpath.operations.Number} instance.
 *
 * @throws TransformerException if a error occurs creating the Expression.
 */
protected Expression number(int opPos) throws TransformerException
{
 return compileUnary(new org.apache.xpath.operations.Number(), opPos);
}

代码示例来源:origin: MobiVM/robovm

/**
 * Compile a 'number(...)' operation.
 * 
 * @param opPos The current position in the m_opMap array.
 *
 * @return reference to {@link org.apache.xpath.operations.Number} instance.
 *
 * @throws TransformerException if a error occurs creating the Expression.
 */
protected Expression number(int opPos) throws TransformerException
{
 return compileUnary(new org.apache.xpath.operations.Number(), opPos);
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.xalan

/**
 * Compile a 'number(...)' operation.
 * 
 * @param opPos The current position in the m_opMap array.
 *
 * @return reference to {@link org.apache.xpath.operations.Number} instance.
 *
 * @throws TransformerException if a error occurs creating the Expression.
 */
protected Expression number(int opPos) throws TransformerException
{
 return compileUnary(new org.apache.xpath.operations.Number(), opPos);
}

代码示例来源:origin: com.gluonhq/robovm-rt

/**
 * Compile a 'number(...)' operation.
 * 
 * @param opPos The current position in the m_opMap array.
 *
 * @return reference to {@link org.apache.xpath.operations.Number} instance.
 *
 * @throws TransformerException if a error occurs creating the Expression.
 */
protected Expression number(int opPos) throws TransformerException
{
 return compileUnary(new org.apache.xpath.operations.Number(), opPos);
}

代码示例来源:origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

/**
 * Compile a 'number(...)' operation.
 * 
 * @param opPos The current position in the m_opMap array.
 *
 * @return reference to {@link org.apache.xpath.operations.Number} instance.
 *
 * @throws TransformerException if a error occurs creating the Expression.
 */
protected Expression number(int opPos) throws TransformerException
{
 return compileUnary(new org.apache.xpath.operations.Number(), opPos);
}

相关文章

微信公众号

最新文章

更多

Number类方法