edu.jhu.hlt.concrete.ingesters.kbp2017.Mention Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of concrete-ingesters-kbp Show documentation
Show all versions of concrete-ingesters-kbp Show documentation
Library providing ingesters and utilities for converting the TAC KBP data to Concrete.
The newest version!
package edu.jhu.hlt.concrete.ingesters.kbp2017;
import org.inferred.freebuilder.FreeBuilder;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
@FreeBuilder
@JsonDeserialize(builder = Mention.Builder.class)
public abstract class Mention {
public abstract MentionType getType();
public abstract String getText();
public abstract Provenance getProvenance();
static class Builder extends Mention_Builder {
Builder() {
}
}
}