Java HTML Jsoup Element getAuthorName(Element authorElement)

Here you can find the source of getAuthorName(Element authorElement)

Description

get Author Name

License

Open Source License

Parameter

Parameter Description
authorElement a parameter

Return

Author name returned by Google Scholar

Declaration

private static String getAuthorName(Element authorElement) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import org.jsoup.nodes.Element;

public class Main {
    /**/*from   w w  w  .  j  a v  a  2 s  . c om*/
     *
     * @param authorElement
     * @return Author name returned by Google Scholar
     */
    private static String getAuthorName(Element authorElement) {
        return authorElement.text().trim();
    }
}

Related

  1. findPreviousHElement(Elements sequence, Element reference)
  2. findRootElement(Element element)
  3. firstElement(final Element element, final String... tags)
  4. getActiveJob(Element element)
  5. getAllNodes(Element element)
  6. getCodeSnippetCLT(Element codeElement, String content, String fqn, String api, String kind, String[] titles)
  7. getDate(Elements caption)
  8. getDouble(Elements line, int idx)
  9. getElementByXPath(String xpath, Document doc)