org.apache.xml.utils.URI.initialize()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(6.0k)|赞(0)|评价(0)|浏览(116)

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

URI.initialize介绍

[英]Initialize all fields of this URI from another URI.
[中]从另一个URI初始化此URI的所有字段。

代码示例

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

  1. /**
  2. * Construct a new URI from another URI. All fields for this URI are
  3. * set equal to the fields of the URI passed in.
  4. *
  5. * @param p_other the URI to copy (cannot be null)
  6. */
  7. public URI(URI p_other)
  8. {
  9. initialize(p_other);
  10. }

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

  1. initialize(p_base);

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

  1. initialize(p_base);

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

  1. /**
  2. * Construct a new URI from another URI. All fields for this URI are
  3. * set equal to the fields of the URI passed in.
  4. *
  5. * @param p_other the URI to copy (cannot be null)
  6. */
  7. public URI(URI p_other)
  8. {
  9. initialize(p_other);
  10. }

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

  1. /**
  2. * Construct a new URI from a base URI and a URI specification string.
  3. * The URI specification string may be a relative URI.
  4. *
  5. * @param p_base the base URI (cannot be null if p_uriSpec is null or
  6. * empty)
  7. * @param p_uriSpec the URI specification string (cannot be null or
  8. * empty if p_base is null)
  9. *
  10. * @throws MalformedURIException if p_uriSpec violates any syntax
  11. * rules
  12. */
  13. public URI(URI p_base, String p_uriSpec) throws MalformedURIException
  14. {
  15. initialize(p_base, p_uriSpec);
  16. }

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

  1. /**
  2. * Construct a new URI from a base URI and a URI specification string.
  3. * The URI specification string may be a relative URI.
  4. *
  5. * @param p_base the base URI (cannot be null if p_uriSpec is null or
  6. * empty)
  7. * @param p_uriSpec the URI specification string (cannot be null or
  8. * empty if p_base is null)
  9. *
  10. * @throws MalformedURIException if p_uriSpec violates any syntax
  11. * rules
  12. */
  13. public URI(URI p_base, String p_uriSpec) throws MalformedURIException
  14. {
  15. initialize(p_base, p_uriSpec);
  16. }

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

  1. /**
  2. * Construct a new URI from another URI. All fields for this URI are
  3. * set equal to the fields of the URI passed in.
  4. *
  5. * @param p_other the URI to copy (cannot be null)
  6. */
  7. public URI(URI p_other)
  8. {
  9. initialize(p_other);
  10. }

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

  1. /**
  2. * Construct a new URI from another URI. All fields for this URI are
  3. * set equal to the fields of the URI passed in.
  4. *
  5. * @param p_other the URI to copy (cannot be null)
  6. */
  7. public URI(URI p_other)
  8. {
  9. initialize(p_other);
  10. }

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

  1. /**
  2. * Construct a new URI from another URI. All fields for this URI are
  3. * set equal to the fields of the URI passed in.
  4. *
  5. * @param p_other the URI to copy (cannot be null)
  6. */
  7. public URI(URI p_other)
  8. {
  9. initialize(p_other);
  10. }

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

  1. /**
  2. * Construct a new URI from another URI. All fields for this URI are
  3. * set equal to the fields of the URI passed in.
  4. *
  5. * @param p_other the URI to copy (cannot be null)
  6. */
  7. public URI(URI p_other)
  8. {
  9. initialize(p_other);
  10. }

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

  1. /**
  2. * Construct a new URI from another URI. All fields for this URI are
  3. * set equal to the fields of the URI passed in.
  4. *
  5. * @param p_other the URI to copy (cannot be null)
  6. */
  7. public URI(URI p_other)
  8. {
  9. initialize(p_other);
  10. }

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

  1. /**
  2. * Construct a new URI from another URI. All fields for this URI are
  3. * set equal to the fields of the URI passed in.
  4. *
  5. * @param p_other the URI to copy (cannot be null)
  6. */
  7. public URI(URI p_other)
  8. {
  9. initialize(p_other);
  10. }

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

  1. /**
  2. * Construct a new URI from another URI. All fields for this URI are
  3. * set equal to the fields of the URI passed in.
  4. *
  5. * @param p_other the URI to copy (cannot be null)
  6. */
  7. public URI(URI p_other)
  8. {
  9. initialize(p_other);
  10. }

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

  1. /**
  2. * Construct a new URI from another URI. All fields for this URI are
  3. * set equal to the fields of the URI passed in.
  4. *
  5. * @param p_other the URI to copy (cannot be null)
  6. */
  7. public URI(URI p_other)
  8. {
  9. initialize(p_other);
  10. }

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

  1. /**
  2. * Construct a new URI from another URI. All fields for this URI are
  3. * set equal to the fields of the URI passed in.
  4. *
  5. * @param p_other the URI to copy (cannot be null)
  6. */
  7. public URI(URI p_other)
  8. {
  9. initialize(p_other);
  10. }

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

  1. /**
  2. * Construct a new URI from a base URI and a URI specification string.
  3. * The URI specification string may be a relative URI.
  4. *
  5. * @param p_base the base URI (cannot be null if p_uriSpec is null or
  6. * empty)
  7. * @param p_uriSpec the URI specification string (cannot be null or
  8. * empty if p_base is null)
  9. *
  10. * @throws MalformedURIException if p_uriSpec violates any syntax
  11. * rules
  12. */
  13. public URI(URI p_base, String p_uriSpec) throws MalformedURIException
  14. {
  15. initialize(p_base, p_uriSpec);
  16. }

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

  1. /**
  2. * Construct a new URI from a base URI and a URI specification string.
  3. * The URI specification string may be a relative URI.
  4. *
  5. * @param p_base the base URI (cannot be null if p_uriSpec is null or
  6. * empty)
  7. * @param p_uriSpec the URI specification string (cannot be null or
  8. * empty if p_base is null)
  9. *
  10. * @throws MalformedURIException if p_uriSpec violates any syntax
  11. * rules
  12. */
  13. public URI(URI p_base, String p_uriSpec) throws MalformedURIException
  14. {
  15. initialize(p_base, p_uriSpec);
  16. }

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

  1. /**
  2. * Construct a new URI from a base URI and a URI specification string.
  3. * The URI specification string may be a relative URI.
  4. *
  5. * @param p_base the base URI (cannot be null if p_uriSpec is null or
  6. * empty)
  7. * @param p_uriSpec the URI specification string (cannot be null or
  8. * empty if p_base is null)
  9. *
  10. * @throws MalformedURIException if p_uriSpec violates any syntax
  11. * rules
  12. */
  13. public URI(URI p_base, String p_uriSpec) throws MalformedURIException
  14. {
  15. initialize(p_base, p_uriSpec);
  16. }

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

  1. /**
  2. * Construct a new URI from a base URI and a URI specification string.
  3. * The URI specification string may be a relative URI.
  4. *
  5. * @param p_base the base URI (cannot be null if p_uriSpec is null or
  6. * empty)
  7. * @param p_uriSpec the URI specification string (cannot be null or
  8. * empty if p_base is null)
  9. *
  10. * @throws MalformedURIException if p_uriSpec violates any syntax
  11. * rules
  12. */
  13. public URI(URI p_base, String p_uriSpec) throws MalformedURIException
  14. {
  15. initialize(p_base, p_uriSpec);
  16. }

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

  1. /**
  2. * Construct a new URI from a base URI and a URI specification string.
  3. * The URI specification string may be a relative URI.
  4. *
  5. * @param p_base the base URI (cannot be null if p_uriSpec is null or
  6. * empty)
  7. * @param p_uriSpec the URI specification string (cannot be null or
  8. * empty if p_base is null)
  9. *
  10. * @throws MalformedURIException if p_uriSpec violates any syntax
  11. * rules
  12. */
  13. public URI(URI p_base, String p_uriSpec) throws MalformedURIException
  14. {
  15. initialize(p_base, p_uriSpec);
  16. }

相关文章