javax.xml.xpath.XPathFactoryFinder._newFactory()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(5.9k)|赞(0)|评价(0)|浏览(114)

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

XPathFactoryFinder._newFactory介绍

[英]Lookup a XPathFactory for the given object model.
[中]查找给定对象模型的XPathFactory。

代码示例

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

/**
 * <p>Creates a new {@link XPathFactory} object for the specified
 * schema language.</p>
 *
 * @param uri
 *       Identifies the underlying object model.
 *
 * @return <code>null</code> if the callee fails to create one.
 *
 * @throws NullPointerException
 *      If the parameter is null.
 */
public XPathFactory newFactory(String uri) {
  if (uri == null) {
    throw new NullPointerException("uri == null");
  }
  XPathFactory f = _newFactory(uri);
  if (debug) {
    if (f != null) {
      debugPrintln("factory '" + f.getClass().getName() + "' was found for " + uri);
    } else {
      debugPrintln("unable to find a factory for " + uri);
    }
  }
  return f;
}

代码示例来源:origin: javax.xml.parsers/jaxp-api

/**
 * <p>Creates a new {@link XPathFactory} object for the specified
 * schema language.</p>
 * 
 * @param uri
 *       Identifies the underlying object model.
 * 
 * @return <code>null</code> if the callee fails to create one.
 * 
 * @throws NullPointerException
 *      If the parameter is null.
 */
public XPathFactory newFactory(String uri) {
  if(uri==null)        throw new NullPointerException();
  XPathFactory f = _newFactory(uri);
  if (f != null) {
    debugPrintln("factory '" + f.getClass().getName() + "' was found for " + uri);
  } else {
    debugPrintln("unable to find a factory for " + uri);
  }
  return f;
}

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

/**
 * <p>Creates a new {@link XPathFactory} object for the specified
 * schema language.</p>
 *
 * @param uri
 *       Identifies the underlying object model.
 *
 * @return <code>null</code> if the callee fails to create one.
 *
 * @throws NullPointerException
 *      If the parameter is null.
 */
public XPathFactory newFactory(String uri) {
  if (uri == null) {
    throw new NullPointerException("uri == null");
  }
  XPathFactory f = _newFactory(uri);
  if (debug) {
    if (f != null) {
      debugPrintln("factory '" + f.getClass().getName() + "' was found for " + uri);
    } else {
      debugPrintln("unable to find a factory for " + uri);
    }
  }
  return f;
}

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

/**
 * <p>Creates a new {@link XPathFactory} object for the specified
 * schema language.</p>
 *
 * @param uri
 *       Identifies the underlying object model.
 *
 * @return <code>null</code> if the callee fails to create one.
 *
 * @throws NullPointerException
 *      If the parameter is null.
 */
public XPathFactory newFactory(String uri) {
  if (uri == null) {
    throw new NullPointerException("uri == null");
  }
  XPathFactory f = _newFactory(uri);
  if (debug) {
    if (f != null) {
      debugPrintln("factory '" + f.getClass().getName() + "' was found for " + uri);
    } else {
      debugPrintln("unable to find a factory for " + uri);
    }
  }
  return f;
}

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

/**
 * <p>Creates a new {@link XPathFactory} object for the specified
 * schema language.</p>
 *
 * @param uri
 *       Identifies the underlying object model.
 *
 * @return <code>null</code> if the callee fails to create one.
 *
 * @throws NullPointerException
 *      If the parameter is null.
 */
public XPathFactory newFactory(String uri) {
  if (uri == null) {
    throw new NullPointerException("uri == null");
  }
  XPathFactory f = _newFactory(uri);
  if (debug) {
    if (f != null) {
      debugPrintln("factory '" + f.getClass().getName() + "' was found for " + uri);
    } else {
      debugPrintln("unable to find a factory for " + uri);
    }
  }
  return f;
}

代码示例来源:origin: org.apache.servicemix.specs/org.apache.servicemix.specs.jaxp-api-1.4

/**
 * <p>Creates a new {@link XPathFactory} object for the specified
 * schema language.</p>
 * 
 * @param uri
 *       Identifies the underlying object model.
 * 
 * @return <code>null</code> if the callee fails to create one.
 * 
 * @throws NullPointerException
 *      If the parameter is null.
 */
public XPathFactory newFactory(String uri) {
  if(uri==null)        throw new NullPointerException();
  XPathFactory f = _newFactory(uri);
  if (debug) {
    if (f != null) {
      debugPrintln("factory '" + f.getClass().getName() + "' was found for " + uri);
    } else {
      debugPrintln("unable to find a factory for " + uri);
    }
  }
  return f;
}

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

/**
 * <p>Creates a new {@link XPathFactory} object for the specified
 * schema language.</p>
 *
 * @param uri
 *       Identifies the underlying object model.
 *
 * @return <code>null</code> if the callee fails to create one.
 *
 * @throws NullPointerException
 *      If the parameter is null.
 */
public XPathFactory newFactory(String uri) {
  if (uri == null) {
    throw new NullPointerException("uri == null");
  }
  XPathFactory f = _newFactory(uri);
  if (debug) {
    if (f != null) {
      debugPrintln("factory '" + f.getClass().getName() + "' was found for " + uri);
    } else {
      debugPrintln("unable to find a factory for " + uri);
    }
  }
  return f;
}

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

/**
 * <p>Creates a new {@link XPathFactory} object for the specified
 * schema language.</p>
 *
 * @param uri
 *       Identifies the underlying object model.
 *
 * @return <code>null</code> if the callee fails to create one.
 *
 * @throws NullPointerException
 *      If the parameter is null.
 */
public XPathFactory newFactory(String uri) {
  if (uri == null) {
    throw new NullPointerException("uri == null");
  }
  XPathFactory f = _newFactory(uri);
  if (debug) {
    if (f != null) {
      debugPrintln("factory '" + f.getClass().getName() + "' was found for " + uri);
    } else {
      debugPrintln("unable to find a factory for " + uri);
    }
  }
  return f;
}

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

/**
 * <p>Creates a new {@link XPathFactory} object for the specified
 * schema language.</p>
 *
 * @param uri
 *       Identifies the underlying object model.
 *
 * @return <code>null</code> if the callee fails to create one.
 *
 * @throws NullPointerException
 *      If the parameter is null.
 */
public XPathFactory newFactory(String uri) {
  if (uri == null) {
    throw new NullPointerException("uri == null");
  }
  XPathFactory f = _newFactory(uri);
  if (debug) {
    if (f != null) {
      debugPrintln("factory '" + f.getClass().getName() + "' was found for " + uri);
    } else {
      debugPrintln("unable to find a factory for " + uri);
    }
  }
  return f;
}

相关文章