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

edu.jhu.hlt.concrete.ingesters.kbp2017.Mention Maven / Gradle / Ivy

Go to download

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() {

    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy