gpt4 book ai didi

org.exolab.castor.xml.util.XMLFieldDescriptorImpl.matches()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-27 16:11:05 29 4
gpt4 key购买 nike

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

XMLFieldDescriptorImpl.matches介绍

暂无

代码示例

代码示例来源:origin: org.codehaus.castor/castor-xml

/**
 * @see org.exolab.castor.xml.XMLFieldDescriptor#matches(java.lang.String, java.lang.String)
 *      {@inheritDoc}
 */
public boolean matches(final String xmlName, final String namespace) {
 // compare namespaces
 if (namespace == null) {
  if ((_nsURI != null) && (_nsURI.length() > 0)) {
   return false;
  }
 } else if (_nsURI == null) {
  if ((namespace.length() > 0) && (!_isWild)) {
   return false;
  }
 } else if (!_nsURI.equals(namespace)) {
  return false;
 }
 // if we make this far the namespaces match, now compare names
 return matches(xmlName);
}

代码示例来源:origin: org.codehaus.castor/com.springsource.org.castor

/**
 * @see org.exolab.castor.xml.XMLFieldDescriptor#matches(java.lang.String, java.lang.String)
 * {@inheritDoc}
 */
public boolean matches(final String xmlName, final String namespace) {
  // compare namespaces
  if (namespace == null) {
    if ((_nsURI != null) && (_nsURI.length() > 0)) {
      return false;
    }
  } else if (_nsURI == null) {
    if ((namespace.length() > 0) && (!_isWild)) {
      return false;
    }
  } else if (!_nsURI.equals(namespace)) {
    return false;
  }
  // if we make this far the namespaces match, now compare names
  return matches(xmlName);
}

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com