Example usage for org.jsoup.nodes Document data

List of usage examples for org.jsoup.nodes Document data

Introduction

In this page you can find the example usage for org.jsoup.nodes Document data.

Prototype

public String data() 

Source Link

Document

Get the combined data of this element.

Usage

From source file:org.brunocvcunha.taskerbox.impl.http.HTTPHTMLChannel.java

@Override
protected String getItemFingerprint(Document entry) {
    return entry.data();
}