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

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

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

Element.<init>介绍

暂无

代码示例

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

  1. static Element getDigestAuthElement(DigestAuth auth) {
  2. Element e = new Element("digest");
  3. populateBasicDigestElement(e, auth);
  4. return e;
  5. }

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

  1. static Element getBasicAuthElement(BasicAuth auth) {
  2. Element e = new Element("basic");
  3. populateBasicDigestElement(e, auth);
  4. return e;
  5. }

代码示例来源:origin: stanfordnlp/CoreNLP

  1. private static Element makeProbabilitiesElement(ExtractionObject object, String curNS) {
  2. Element probs = new Element("probabilities", curNS);
  3. if (object.getTypeProbabilities() != null){
  4. List<Pair<String, Double>> sorted = Counters.toDescendingMagnitudeSortedListWithCounts(object.getTypeProbabilities());
  5. for(Pair<String, Double> lv: sorted) {
  6. Element prob = new Element("probability", curNS);
  7. Element label = new Element("label", curNS);
  8. label.appendChild(lv.first);
  9. Element value = new Element("value", curNS);
  10. value.appendChild(lv.second.toString());
  11. prob.appendChild(label);
  12. prob.appendChild(value);
  13. probs.appendChild(prob);
  14. }
  15. }
  16. return probs;
  17. }

代码示例来源:origin: stanfordnlp/CoreNLP

  1. /**
  2. * Helper method for addWordInfo(). If the value is not null,
  3. * creates an element of the given name and namespace and adds it to the
  4. * tokenElement.
  5. *
  6. * @param tokenElement This is the element to which the newly created element will be added
  7. * @param elemName This is the name for the new XML element
  8. * @param curNS The current namespace
  9. * @param value This is its value
  10. */
  11. private static void setSingleElement(Element tokenElement, String elemName, String curNS, String value) {
  12. if (value != null) {
  13. Element cur = new Element(elemName, curNS);
  14. cur.appendChild(value);
  15. tokenElement.appendChild(cur);
  16. }
  17. }

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

  1. private Element getRootElement() {
  2. Element eRoot = new Element("rest-client");
  3. // set version attributes to rest-client root tag
  4. eRoot.addAttribute(new Attribute("version", Versions.CURRENT));
  5. return eRoot;
  6. }

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

  1. static Element getOAuth2BearerElement(OAuth2BearerAuth auth) {
  2. Element e = new Element("oauth2-bearer");
  3. if(StringUtil.isNotEmpty(auth.getOAuth2BearerToken())) {
  4. Element eToken = new Element("token");
  5. eToken.appendChild(auth.getOAuth2BearerToken());
  6. e.appendChild(eToken);
  7. }
  8. return e;
  9. }

代码示例来源:origin: stanfordnlp/CoreNLP

  1. /**
  2. * Generates the XML content for the coreference chain object.
  3. */
  4. private static boolean addCorefGraphInfo
  5. (Options options, Element corefInfo, List<CoreMap> sentences, Map<Integer, CorefChain> corefChains, String curNS) {
  6. boolean foundCoref = false;
  7. for (CorefChain chain : corefChains.values()) {
  8. if (!options.printSingletons && chain.getMentionsInTextualOrder().size() <= 1)
  9. continue;
  10. foundCoref = true;
  11. Element chainElem = new Element("coreference", curNS);
  12. CorefChain.CorefMention source = chain.getRepresentativeMention();
  13. addCorefMention(options, chainElem, curNS, sentences, source, true);
  14. for (CorefChain.CorefMention mention : chain.getMentionsInTextualOrder()) {
  15. if (mention == source)
  16. continue;
  17. addCorefMention(options, chainElem, curNS, sentences, mention, false);
  18. }
  19. corefInfo.appendChild(chainElem);
  20. }
  21. return foundCoref;
  22. }

代码示例来源:origin: stanfordnlp/CoreNLP

  1. private static void addDependencyInfo(Element depInfo, String rel, boolean isExtra, int source, String sourceWord, Integer sourceCopy, int target, String targetWord, Integer targetCopy, String curNS) {
  2. Element depElem = new Element("dep", curNS);
  3. depElem.addAttribute(new Attribute("type", rel));
  4. if (isExtra) {
  5. depElem.addAttribute(new Attribute("extra", "true"));
  6. }
  7. Element govElem = new Element("governor", curNS);
  8. govElem.addAttribute(new Attribute("idx", Integer.toString(source)));
  9. govElem.appendChild(sourceWord);
  10. if (sourceCopy != null && sourceCopy > 0) {
  11. govElem.addAttribute(new Attribute("copy", Integer.toString(sourceCopy)));
  12. }
  13. depElem.appendChild(govElem);
  14. Element dependElem = new Element("dependent", curNS);
  15. dependElem.addAttribute(new Attribute("idx", Integer.toString(target)));
  16. dependElem.appendChild(targetWord);
  17. if (targetCopy != null && targetCopy > 0) {
  18. dependElem.addAttribute(new Attribute("copy", Integer.toString(targetCopy)));
  19. }
  20. depElem.appendChild(dependElem);
  21. depInfo.appendChild(depElem);
  22. }

代码示例来源:origin: com.thoughtworks.xstream/xstream

  1. protected Object createNode(final String name) {
  2. final Element newNode = new Element(encodeNode(name));
  3. final Element top = top();
  4. if (top != null){
  5. top().appendChild(newNode);
  6. }
  7. return newNode;
  8. }

代码示例来源:origin: stanfordnlp/CoreNLP

  1. CorefChain.CorefMention mention,
  2. boolean representative) {
  3. Element mentionElem = new Element("mention", curNS);
  4. if (representative) {
  5. mentionElem.addAttribute(new Attribute("representative", "true"));

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

  1. static Element getNtlmAuthElement(NtlmAuth auth) {
  2. Element e = new Element("ntlm");
  3. if(StringUtil.isNotEmpty(auth.getDomain())) {
  4. Element eDomain = new Element("domain");
  5. eDomain.appendChild(auth.getDomain());
  6. e.appendChild(eDomain);
  7. }
  8. if(StringUtil.isNotEmpty(auth.getWorkstation())) {
  9. Element eWorkstation = new Element("workstation");
  10. eWorkstation.appendChild(auth.getWorkstation());
  11. e.appendChild(eWorkstation);
  12. }
  13. populateUsernamePasswordElement(e, auth);
  14. return e;
  15. }

代码示例来源:origin: stanfordnlp/CoreNLP

  1. private static Element toXML(EntityMention entity, String curNS) {
  2. Element top = new Element("entity", curNS);
  3. top.addAttribute(new Attribute("id", entity.getObjectId()));
  4. Element type = new Element("type", curNS);
  5. type.appendChild(entity.getType());
  6. top.appendChild(entity.getType());
  7. if (entity.getNormalizedName() != null){
  8. Element nm = new Element("normalized", curNS);
  9. nm.appendChild(entity.getNormalizedName());
  10. top.appendChild(nm);
  11. }
  12. if (entity.getSubType() != null){
  13. Element subtype = new Element("subtype", curNS);
  14. subtype.appendChild(entity.getSubType());
  15. top.appendChild(subtype);
  16. }
  17. Element span = new Element("span", curNS);
  18. span.addAttribute(new Attribute("start", Integer.toString(entity.getHeadTokenStart())));
  19. span.addAttribute(new Attribute("end", Integer.toString(entity.getHeadTokenEnd())));
  20. top.appendChild(span);
  21. top.appendChild(makeProbabilitiesElement(entity, curNS));
  22. return top;
  23. }

代码示例来源:origin: stanfordnlp/CoreNLP

  1. private static Element toXML(RelationMention relation, String curNS) {
  2. Element top = new Element("relation", curNS);
  3. top.addAttribute(new Attribute("id", relation.getObjectId()));
  4. Element type = new Element("type", curNS);
  5. type.appendChild(relation.getType());
  6. top.appendChild(relation.getType());
  7. if (relation.getSubType() != null){
  8. Element subtype = new Element("subtype", curNS);
  9. subtype.appendChild(relation.getSubType());
  10. top.appendChild(relation.getSubType());
  11. }
  12. List<EntityMention> mentions = relation.getEntityMentionArgs();
  13. Element args = new Element("arguments", curNS);
  14. for (EntityMention e : mentions) {
  15. args.appendChild(toXML(e, curNS));
  16. }
  17. top.appendChild(args);
  18. top.appendChild(makeProbabilitiesElement(relation, curNS));
  19. return top;
  20. }

代码示例来源:origin: stanfordnlp/CoreNLP

  1. private static Element toXML(RelationTriple triple, String curNS) {
  2. Element top = new Element("triple", curNS);
  3. top.addAttribute(new Attribute("confidence", triple.confidenceGloss()));
  4. Element subject = new Element("subject", curNS);
  5. subject.addAttribute(new Attribute("begin", Integer.toString(triple.subjectTokenSpan().first)));
  6. subject.addAttribute(new Attribute("end", Integer.toString(triple.subjectTokenSpan().second)));
  7. Element text = new Element("text", curNS);
  8. text.appendChild(triple.subjectGloss());
  9. Element lemma = new Element("lemma", curNS);
  10. lemma.appendChild(triple.subjectLemmaGloss());
  11. subject.appendChild(text);
  12. Element relation = new Element("relation", curNS);
  13. relation.addAttribute(new Attribute("begin", Integer.toString(triple.relationTokenSpan().first)));
  14. relation.addAttribute(new Attribute("end", Integer.toString(triple.relationTokenSpan().second)));
  15. text = new Element("text", curNS);
  16. text.appendChild(triple.relationGloss());
  17. lemma = new Element("lemma", curNS);
  18. lemma.appendChild(triple.relationLemmaGloss());
  19. relation.appendChild(text);
  20. Element object = new Element("object", curNS);
  21. object.addAttribute(new Attribute("begin", Integer.toString(triple.objectTokenSpan().first)));
  22. object.addAttribute(new Attribute("end", Integer.toString(triple.objectTokenSpan().second)));
  23. text = new Element("text", curNS);
  24. text.appendChild(triple.objectGloss());
  25. lemma = new Element("lemma", curNS);
  26. lemma.appendChild(triple.objectLemmaGloss());
  27. object.appendChild(text);

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

  1. static void populateUsernamePasswordElement(Element eParent, UsernamePasswordAuth auth) {
  2. if(StringUtil.isNotEmpty(auth.getUsername())) {
  3. Element eUsername = new Element("username");
  4. eUsername.appendChild(auth.getUsername());
  5. eParent.appendChild(eUsername);
  6. }
  7. if(auth.getPassword() != null && auth.getPassword().length > 0) {
  8. Element ePassword = new Element("password");
  9. ePassword.appendChild(Util.base64encode(new String(auth.getPassword())));
  10. eParent.appendChild(ePassword);
  11. }
  12. }

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

  1. static void populateBasicDigestElement(Element eParent, BasicDigestAuth auth) {
  2. if(StringUtil.isNotEmpty(auth.getHost())) {
  3. Element eHost = new Element("host");
  4. eHost.appendChild(auth.getHost());
  5. eParent.appendChild(eHost);
  6. }
  7. if(StringUtil.isNotEmpty(auth.getRealm())) {
  8. Element eRealm = new Element("realm");
  9. eRealm.appendChild(auth.getRealm());
  10. eParent.appendChild(eRealm);
  11. }
  12. if(auth.isPreemptive()) {
  13. Element ePreemptive = new Element("preemptive");
  14. eParent.appendChild(ePreemptive);
  15. }
  16. populateUsernamePasswordElement(eParent, auth);
  17. }

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

  1. public static void writeRequestCollectionXML(final List<Request> requests, final File f)
  2. throws IOException, XMLException {
  3. XmlPersistenceWrite xUtl = new XmlPersistenceWrite();
  4. Element eRoot = new Element("request-collection");
  5. eRoot.addAttribute(new Attribute("version", Versions.CURRENT));
  6. for(Request req: requests) {
  7. Element e = xUtl.getRequestElement(req);
  8. eRoot.appendChild(e);
  9. }
  10. Document doc = new Document(eRoot);
  11. xUtl.writeXML(doc, f);
  12. }

代码示例来源:origin: stanfordnlp/CoreNLP

  1. private static Element buildDependencyTreeInfo(String dependencyType, SemanticGraph graph, List<CoreLabel> tokens, String curNS) {
  2. if(graph != null) {
  3. Element depInfo = new Element("dependencies", curNS);
  4. depInfo.addAttribute(new Attribute("type", dependencyType));

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

  1. static Element getAuthElement(Auth auth) {
  2. Element eAuth = new Element("auth");
  3. if(auth instanceof BasicAuth) {
  4. eAuth.appendChild(getBasicAuthElement((BasicAuth)auth));
  5. }
  6. else if(auth instanceof DigestAuth) {
  7. eAuth.appendChild(getDigestAuthElement((DigestAuth)auth));
  8. }
  9. else if(auth instanceof NtlmAuth) {
  10. eAuth.appendChild(getNtlmAuthElement((NtlmAuth)auth));
  11. }
  12. else if(auth instanceof OAuth2BearerAuth) {
  13. eAuth.appendChild(getOAuth2BearerElement((OAuth2BearerAuth)auth));
  14. }
  15. return eAuth;
  16. }

代码示例来源:origin: stanfordnlp/CoreNLP

  1. Element timexElem = new Element("Timex", curNS);
  2. timexElem.addAttribute(new Attribute("tid", timex.tid()));
  3. timexElem.addAttribute(new Attribute("type", timex.timexType()));
  4. Element cur = new Element("TrueCase", curNS);
  5. cur.appendChild(token.get(CoreAnnotations.TrueCaseAnnotation.class));
  6. wordInfo.appendChild(cur);
  7. Element cur = new Element("TrueCaseText", curNS);
  8. cur.appendChild(token.get(CoreAnnotations.TrueCaseTextAnnotation.class));
  9. wordInfo.appendChild(cur);
  10. Element cur = new Element("sentiment", curNS);
  11. cur.appendChild(token.get(SentimentCoreAnnotations.SentimentClass.class));
  12. wordInfo.appendChild(cur);
  13. Element cur = new Element("entitylink", curNS);
  14. cur.appendChild(token.get(CoreAnnotations.WikipediaEntityAnnotation.class));
  15. wordInfo.appendChild(cur);

相关文章