nu.xom.Element.getQualifiedName()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(11.1k)|赞(0)|评价(0)|浏览(346)

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

Element.getQualifiedName介绍

暂无

代码示例

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

  1. public String getElementQName(Object o) {
  2. return (isElement(o) ? ((Element)o).getQualifiedName() : null);
  3. }

代码示例来源:origin: wiztools/rest-client

  1. private Map<String, String> getHeadersFromHeaderNode(final Element node)
  2. throws XMLException {
  3. Map<String, String> m = new LinkedHashMap<>();
  4. for (int i = 0; i < node.getChildElements().size(); i++) {
  5. Element headerElement = node.getChildElements().get(i);
  6. if (!"header".equals(headerElement.getQualifiedName())) {
  7. throw new XMLException("<headers> element should contain only <header> elements");
  8. }
  9. m.put(headerElement.getAttributeValue("key"),
  10. headerElement.getAttributeValue("value"));
  11. }
  12. return m;
  13. }

代码示例来源:origin: wiztools/rest-client

  1. private List<HttpCookie> getCookiesFromCookiesNode(final Element node)
  2. throws XMLException {
  3. List<HttpCookie> out = new ArrayList<>();
  4. for (int i = 0; i < node.getChildElements().size(); i++) {
  5. Element e = node.getChildElements().get(i);
  6. if(!"cookie".equals(e.getQualifiedName())) {
  7. throw new XMLException("<cookies> element should contain only <cookie> elements");
  8. }
  9. HttpCookie cookie = new HttpCookie(e.getAttributeValue("name"),
  10. e.getAttributeValue("value"));
  11. final String cookieVerStr = e.getAttributeValue("version");
  12. if(StringUtil.isNotEmpty(cookieVerStr)) {
  13. cookie.setVersion(Integer.parseInt(cookieVerStr));
  14. }
  15. else {
  16. cookie.setVersion(CookieVersion.DEFAULT_VERSION.getIntValue());
  17. }
  18. out.add(cookie);
  19. }
  20. return out;
  21. }

代码示例来源:origin: wiztools/rest-client

  1. String nodeName = tNode.getQualifiedName();
  2. if ("http-version".equals(nodeName)) {
  3. String t = tNode.getValue();

代码示例来源:origin: wiztools/rest-client

  1. if (!"rest-client".equals(rootNode.getQualifiedName())) {
  2. throw new XMLException("Root node is not <rest-client>");
  3. for (int i = 0; i < responseNode.getChildElements().size(); i++) {
  4. tNode = responseNode.getChildElements().get(i);
  5. String nodeName = tNode.getQualifiedName();
  6. String nn = tNode.getQualifiedName();
  7. if ("run-count".equals(nn)) {
  8. throw new XMLException("<headers> element should contain only <header> elements");

代码示例来源:origin: wiztools/rest-client

  1. protected Request xml2Request(final Document doc)
  2. throws MalformedURLException, XMLException {
  3. // get the rootNode
  4. Element rootNode = doc.getRootElement();
  5. if (!"rest-client".equals(rootNode.getQualifiedName())) {
  6. throw new XMLException("Root node is not <rest-client>");
  7. }
  8. // checking correct rest version
  9. final String rcVersion = rootNode.getAttributeValue("version");
  10. try {
  11. Versions.versionValidCheck(rcVersion);
  12. }
  13. catch(Versions.VersionValidationException ex) {
  14. throw new XMLException(ex);
  15. }
  16. readVersion = rcVersion;
  17. // if more than two request element is present then throw the exception
  18. if (rootNode.getChildElements().size() != 1) {
  19. throw new XMLException("There can be only one child node for root node: <request>");
  20. }
  21. // minimum one request element is present in xml
  22. if (rootNode.getFirstChildElement("request") == null) {
  23. throw new XMLException("The child node of <rest-client> should be <request>");
  24. }
  25. Element requestNode = rootNode.getFirstChildElement("request");
  26. return getRequestBean(requestNode);
  27. }

代码示例来源:origin: org.openbase/jul.extension.xml

  1. public MissingAttributeException(final String attributeName, final Element sourceElement) {
  2. super("Missing Attribute["+attributeName+"] for Element["+sourceElement.getQualifiedName()+"].");
  3. }
  4. }

代码示例来源:origin: org.openbase/jul.extension.xml

  1. public MissingAttributeException(final String attributeName, final Element sourceElement, final Exception cause) {
  2. super("Missing Attribute["+attributeName+"] for Element["+sourceElement.getQualifiedName()+"].", cause);
  3. }

代码示例来源:origin: org.openbase/jul.extension.xml

  1. public static int parseIntegerAttributeValue(final String attributeName, final Element sourceElement) throws MissingAttributeException, XMLParsingException {
  2. try {
  3. return Integer.parseInt(parseAttributeValue(attributeName, sourceElement));
  4. } catch (NumberFormatException ex) {
  5. throw new XMLParsingException("Could not parse integer attribute[" + attributeName + "] for element[" + sourceElement.getQualifiedName() + "].", ex);
  6. }
  7. }

代码示例来源:origin: org.openbase/jul.extension.xml

  1. public static <T extends Enum<T>> T parseEnumAttributeValue(final String attributeName, final Element sourceElement, final Class<T> enumType) throws MissingAttributeException, XMLParsingException {
  2. String attributeValue = parseAttributeValue(attributeName, sourceElement);
  3. try {
  4. return Enum.valueOf(enumType, attributeValue);
  5. } catch (java.lang.IllegalArgumentException ex) {
  6. throw new XMLParsingException("Could not resolve enum value[" + attributeValue + "] out of attribute[" + attributeName + "] for element[" + sourceElement.getQualifiedName() + "].", ex);
  7. }
  8. }

代码示例来源:origin: org.openscience.cdk/cdk-pcore

  1. private static HashMap<String, String> getGroupDefinitions(Element e) {
  2. HashMap<String, String> groups = new HashMap<String, String>();
  3. Elements children = e.getChildElements();
  4. for (int i = 0; i < children.size(); i++) {
  5. Element child = children.get(i);
  6. if (child.getQualifiedName().equals("group")) {
  7. String id = child.getAttributeValue("id").trim();
  8. String smarts = child.getValue().trim();
  9. groups.put(id, smarts);
  10. }
  11. }
  12. return groups;
  13. }

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

  1. private static HashMap<String, String> getGroupDefinitions(Element e) {
  2. HashMap<String, String> groups = new HashMap<String, String>();
  3. Elements children = e.getChildElements();
  4. for (int i = 0; i < children.size(); i++) {
  5. Element child = children.get(i);
  6. if (child.getQualifiedName().equals("group")) {
  7. String id = child.getAttributeValue("id").trim();
  8. String smarts = child.getValue().trim();
  9. groups.put(id, smarts);
  10. }
  11. }
  12. return groups;
  13. }

代码示例来源:origin: org.jboss.teiid/teiid-engine

  1. /**
  2. * Get the display name of this node. For elements and attributes this is
  3. * [prefix:]localname. For unnamed nodes, it is an empty string.
  4. *
  5. * @return The display name of this node. For a node with no name, return an
  6. * empty string.
  7. */
  8. public String getDisplayName() {
  9. switch (nodeKind) {
  10. case Type.ELEMENT:
  11. return ((Element) node).getQualifiedName();
  12. case Type.ATTRIBUTE:
  13. return ((Attribute) node).getQualifiedName();
  14. case Type.PROCESSING_INSTRUCTION:
  15. return ((ProcessingInstruction) node).getTarget();
  16. default:
  17. return "";
  18. }
  19. }

代码示例来源:origin: org.openbase/jul.extension.xml

  1. public static Elements parseChildElements(final Element sourceElement, final String childElementName, final boolean atLeastOne) throws XMLParsingException {
  2. Elements childElements = sourceElement.getChildElements(childElementName);
  3. if (atLeastOne && childElements.size() == 0) {
  4. throw new XMLParsingException("Missing at least one element[" + childElementName + "] for parent element[" + sourceElement.getQualifiedName() + "].");
  5. }
  6. return childElements;
  7. }

代码示例来源:origin: org.openscience.cdk/cdk-pcore

  1. private static List<PharmacophoreQuery> getdefs(Document doc) throws CDKException {
  2. Element root = doc.getRootElement();
  3. // ltes get the children of the container
  4. // these will be either group or pharmacophore elems
  5. List<PharmacophoreQuery> ret = new ArrayList<PharmacophoreQuery>();
  6. // get global group defs
  7. HashMap<String, String> groups = getGroupDefinitions(root);
  8. //now get the pcore defs
  9. Elements children = root.getChildElements();
  10. for (int i = 0; i < children.size(); i++) {
  11. Element e = children.get(i);
  12. if (e.getQualifiedName().equals("pharmacophore")) ret.add(processPharmacophoreElement(e, groups));
  13. }
  14. return ret;
  15. }

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

  1. private static List<PharmacophoreQuery> getdefs(Document doc) throws CDKException {
  2. Element root = doc.getRootElement();
  3. // ltes get the children of the container
  4. // these will be either group or pharmacophore elems
  5. List<PharmacophoreQuery> ret = new ArrayList<PharmacophoreQuery>();
  6. // get global group defs
  7. HashMap<String, String> groups = getGroupDefinitions(root);
  8. //now get the pcore defs
  9. Elements children = root.getChildElements();
  10. for (int i = 0; i < children.size(); i++) {
  11. Element e = children.get(i);
  12. if (e.getQualifiedName().equals("pharmacophore")) ret.add(processPharmacophoreElement(e, groups));
  13. }
  14. return ret;
  15. }

代码示例来源:origin: cmu-phil/tetrad

  1. public BayesIm getBayesIm(Element element) {
  2. if (!"bayesNet".equals(element.getQualifiedName())) {
  3. throw new IllegalArgumentException("Expecting 'bayesNet' element.");
  4. }
  5. Elements elements = element.getChildElements();
  6. Element element0 = elements.get(0);
  7. Element element1 = elements.get(1);
  8. Element element2 = elements.get(2);
  9. List<Node> variables = getVariables(element0);
  10. BayesPm bayesPm = makeBayesPm(variables, element1);
  11. return makeBayesIm(bayesPm, element2);
  12. }

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

  1. protected SwordValidationInfo handleIncorrectElement(Element element, Properties validationProperties)
  2. throws UnmarshallException {
  3. log.error(
  4. "Unexpected element. Expected: " + getQualifiedName() + ". Got: " +
  5. ((element != null) ? element.getQualifiedName() : "null"));
  6. if (validationProperties != null) {
  7. SwordValidationInfo info = new SwordValidationInfo(
  8. new XmlName(element.getNamespacePrefix(), element.getLocalName(),
  9. element.getNamespaceURI()),
  10. "This is not the expected element. Received: " +
  11. element.getQualifiedName() + " for namespaceUri: " +
  12. element.getNamespaceURI(), SwordValidationInfoType.ERROR
  13. );
  14. return info;
  15. } else {
  16. throw new UnmarshallException("Not a " + getQualifiedName() + " element");
  17. }
  18. }

代码示例来源:origin: cmu-phil/tetrad

  1. private static void addMarginalErrorDistribution(Element marginalDistributionElement, SemIm semIm) {
  2. if (!SemXmlConstants.MARGINAL_ERROR_DISTRIBUTION.equals(marginalDistributionElement.getQualifiedName())) {
  3. throw new IllegalArgumentException("Expecting '" + SemXmlConstants.MARGINAL_ERROR_DISTRIBUTION + "' element"); //$NON-NLS-1$ //$NON-NLS-2$
  4. }
  5. Element normal;
  6. Node node;
  7. Elements normals = marginalDistributionElement.getChildElements(SemXmlConstants.NORMAL);
  8. for (int i = 0; i < normals.size(); i++) {
  9. normal = normals.get(i);
  10. SemGraph graph = semIm.getSemPm().getGraph();
  11. graph.setShowErrorTerms(true);
  12. node = graph.getExogenous(graph.getNode(normal.getAttributeValue(SemXmlConstants.VARIABLE)));
  13. //can't set mean at this point...
  14. semIm.setParamValue(node, node, new Double(normal.getAttributeValue(SemXmlConstants.VARIANCE)));
  15. }
  16. }

代码示例来源:origin: cmu-phil/tetrad

  1. private static void addJointErrorDistribution(Element jointDistributionElement, SemIm semIm) {
  2. if (!SemXmlConstants.JOINT_ERROR_DISTRIBUTION.equals(jointDistributionElement.getQualifiedName())) {
  3. throw new IllegalArgumentException("Expecting '" + SemXmlConstants.JOINT_ERROR_DISTRIBUTION + "' element"); //$NON-NLS-1$ //$NON-NLS-2$
  4. }
  5. Element normal;
  6. Node node1, node2;
  7. Elements normals = jointDistributionElement.getChildElements(SemXmlConstants.NORMAL);
  8. for (int i = 0; i < normals.size(); i++) {
  9. normal = normals.get(i);
  10. node1 = semIm.getSemPm().getGraph().getExogenous(semIm.getSemPm().getGraph().getNode(normal.getAttributeValue(SemXmlConstants.NODE_1)));
  11. node2 = semIm.getSemPm().getGraph().getExogenous(semIm.getSemPm().getGraph().getNode(normal.getAttributeValue(SemXmlConstants.NODE_2)));
  12. semIm.setParamValue(node1, node2, new Double(normal.getAttributeValue(SemXmlConstants.COVARIANCE)));
  13. }
  14. }

相关文章