![JAR search and dependency download from the Maven repository](/logo.png)
de.julielab.geneexpbase.genemodel.SpeciesMention Maven / Gradle / Ivy
package de.julielab.geneexpbase.genemodel;
import de.julielab.java.utilities.spanutils.SpanImplBase;
import org.apache.commons.lang3.Range;
public class SpeciesMention extends SpanImplBase {
private final String taxId;
private final String text;
public SpeciesMention(String taxId, String text, int start, int end) {
super(Range.between(start, end));
this.taxId = taxId;
this.text = text;
}
public String getTaxId() {
return taxId;
}
public String getText() {
return text;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy