edu.isi.nlp.strings.offsets.Offsets Maven / Gradle / Ivy
The newest version!
package edu.isi.nlp.strings.offsets;
import com.google.common.base.Function;
public final class Offsets {
private Offsets() {
throw new UnsupportedOperationException();
}
public static final >
Function asIntFunction() {
return new Function() {
@Override
public Integer apply(final Offset offset) {
return offset.asInt();
}
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy