org.apache.ws.commons.schema.XmlSchemaForm.equals()方法的使用及代码示例

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

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

XmlSchemaForm.equals介绍

暂无

代码示例

代码示例来源:origin: org.apache.cxf/cxf-core

public void setSchema(XmlSchema schema) {
  this.schema = schema;
  isElementQualified = schema.getElementFormDefault().equals(XmlSchemaForm.QUALIFIED);
  isAttributeQualified = schema.getAttributeFormDefault().equals(XmlSchemaForm.QUALIFIED);
}

代码示例来源:origin: org.apache.cxf/cxf-bundle-jaxrs

public void setSchema(XmlSchema schema) {
  this.schema = schema;
  isElementQualified = schema.getElementFormDefault().equals(XmlSchemaForm.QUALIFIED);
  isAttributeQualified = schema.getAttributeFormDefault().equals(XmlSchemaForm.QUALIFIED);
}

代码示例来源:origin: apache/cxf

public void setSchema(XmlSchema schema) {
  this.schema = schema;
  isElementQualified = schema.getElementFormDefault().equals(XmlSchemaForm.QUALIFIED);
  isAttributeQualified = schema.getAttributeFormDefault().equals(XmlSchemaForm.QUALIFIED);
}

代码示例来源:origin: org.apache.cxf/cxf-api

public void setSchema(XmlSchema schema) {
  this.schema = schema;
  isElementQualified = schema.getElementFormDefault().equals(XmlSchemaForm.QUALIFIED);
  isAttributeQualified = schema.getAttributeFormDefault().equals(XmlSchemaForm.QUALIFIED);
}

代码示例来源:origin: apache/cxf

public static boolean isAttributeNameQualified(XmlSchemaAttribute attribute, XmlSchema schema) {
  if (attribute.isRef()) {
    throw new RuntimeException("isElementNameQualified on element with ref=");
  }
  if (attribute.getForm().equals(XmlSchemaForm.QUALIFIED)) {
    return true;
  }
  if (attribute.getForm().equals(XmlSchemaForm.UNQUALIFIED)) {
    return false;
  }
  return schema.getAttributeFormDefault().equals(XmlSchemaForm.QUALIFIED);
}

代码示例来源:origin: org.apache.cxf/cxf-common-utilities

public static boolean isAttributeNameQualified(XmlSchemaAttribute attribute, XmlSchema schema) {
  if (attribute.isRef()) {
    throw new RuntimeException("isElementNameQualified on element with ref=");
  }
  if (attribute.getForm().equals(XmlSchemaForm.QUALIFIED)) {
    return true;
  }
  if (attribute.getForm().equals(XmlSchemaForm.UNQUALIFIED)) {
    return false;
  }
  return schema.getAttributeFormDefault().equals(XmlSchemaForm.QUALIFIED);
}

代码示例来源:origin: apache/cxf

public static boolean isElementNameQualified(XmlSchemaElement element, XmlSchema schema) {
  if (element.isRef()) {
    throw new RuntimeException("isElementNameQualified on element with ref=");
  }
  if (element.getForm().equals(XmlSchemaForm.QUALIFIED)) {
    return true;
  }
  if (element.getForm().equals(XmlSchemaForm.UNQUALIFIED)) {
    return false;
  }
  return schema.getElementFormDefault().equals(XmlSchemaForm.QUALIFIED);
}

代码示例来源:origin: org.apache.cxf/cxf-core

public static boolean isElementNameQualified(XmlSchemaElement element, XmlSchema schema) {
  if (element.isRef()) {
    throw new RuntimeException("isElementNameQualified on element with ref=");
  }
  if (element.getForm().equals(XmlSchemaForm.QUALIFIED)) {
    return true;
  }
  if (element.getForm().equals(XmlSchemaForm.UNQUALIFIED)) {
    return false;
  }
  return schema.getElementFormDefault().equals(XmlSchemaForm.QUALIFIED);
}

代码示例来源:origin: org.apache.cxf/cxf-api

public static boolean isAttributeNameQualified(XmlSchemaAttribute attribute, XmlSchema schema) {
  if (attribute.isRef()) {
    throw new RuntimeException("isElementNameQualified on element with ref=");
  }
  if (attribute.getForm().equals(XmlSchemaForm.QUALIFIED)) {
    return true;
  }
  if (attribute.getForm().equals(XmlSchemaForm.UNQUALIFIED)) {
    return false;
  }
  return schema.getAttributeFormDefault().equals(XmlSchemaForm.QUALIFIED);
}

代码示例来源:origin: org.apache.cxf/cxf-bundle-jaxrs

public static boolean isElementNameQualified(XmlSchemaElement element, XmlSchema schema) {
  if (element.isRef()) {
    throw new RuntimeException("isElementNameQualified on element with ref=");
  }
  if (element.getForm().equals(XmlSchemaForm.QUALIFIED)) {
    return true;
  }
  if (element.getForm().equals(XmlSchemaForm.UNQUALIFIED)) {
    return false;
  }
  return schema.getElementFormDefault().equals(XmlSchemaForm.QUALIFIED);
}

代码示例来源:origin: org.apache.cxf/cxf-common-utilities

public static boolean isElementNameQualified(XmlSchemaElement element, XmlSchema schema) {
  if (element.isRef()) {
    throw new RuntimeException("isElementNameQualified on element with ref=");
  }
  if (element.getForm().equals(XmlSchemaForm.QUALIFIED)) {
    return true;
  }
  if (element.getForm().equals(XmlSchemaForm.UNQUALIFIED)) {
    return false;
  }
  return schema.getElementFormDefault().equals(XmlSchemaForm.QUALIFIED);
}

代码示例来源:origin: org.apache.cxf/cxf-core

public static boolean isAttributeNameQualified(XmlSchemaAttribute attribute, XmlSchema schema) {
  if (attribute.isRef()) {
    throw new RuntimeException("isElementNameQualified on element with ref=");
  }
  if (attribute.getForm().equals(XmlSchemaForm.QUALIFIED)) {
    return true;
  }
  if (attribute.getForm().equals(XmlSchemaForm.UNQUALIFIED)) {
    return false;
  }
  return schema.getAttributeFormDefault().equals(XmlSchemaForm.QUALIFIED);
}

代码示例来源:origin: org.apache.cxf/cxf-api

public static boolean isElementNameQualified(XmlSchemaElement element, XmlSchema schema) {
  if (element.isRef()) {
    throw new RuntimeException("isElementNameQualified on element with ref=");
  }
  if (element.getForm().equals(XmlSchemaForm.QUALIFIED)) {
    return true;
  }
  if (element.getForm().equals(XmlSchemaForm.UNQUALIFIED)) {
    return false;
  }
  return schema.getElementFormDefault().equals(XmlSchemaForm.QUALIFIED);
}

代码示例来源:origin: org.apache.cxf/cxf-bundle-jaxrs

public static boolean isAttributeNameQualified(XmlSchemaAttribute attribute, XmlSchema schema) {
  if (attribute.isRef()) {
    throw new RuntimeException("isElementNameQualified on element with ref=");
  }
  if (attribute.getForm().equals(XmlSchemaForm.QUALIFIED)) {
    return true;
  }
  if (attribute.getForm().equals(XmlSchemaForm.UNQUALIFIED)) {
    return false;
  }
  return schema.getAttributeFormDefault().equals(XmlSchemaForm.QUALIFIED);
}

代码示例来源:origin: apache/cxf

if (schema.getElementFormDefault().equals(XmlSchemaForm.UNQUALIFIED)) {
  mpi.setConcreteName(new QName(null, mpi.getName().getLocalPart()));
} else {

代码示例来源:origin: org.apache.cxf/cxf-bundle-jaxrs

if (schema.getElementFormDefault().equals(XmlSchemaForm.UNQUALIFIED)) {
  mpi.setConcreteName(new QName(null, mpi.getName().getLocalPart()));
} else {

代码示例来源:origin: org.apache.cxf/cxf-rt-core

if (schema.getElementFormDefault().equals(XmlSchemaForm.UNQUALIFIED)) {
  mpi.setConcreteName(new QName(null, mpi.getName().getLocalPart()));
} else {

相关文章