All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nlp2rdf.parser.Document Maven / Gradle / Ivy

There is a newer version: 0.4.1
Show newest version
package org.nlp2rdf.parser;

import java.util.List;


public class Document {
    private List entities;
    private String text;

    public Document(List entities, String text) {
        this.entities = entities;
        this.text = text;
    }

    public List getEntities() {
        return entities;
    }

    public String getText() {
        return text;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy