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

edu.isi.nlp.strings.offsets.Offset Maven / Gradle / Ivy

The newest version!
package edu.isi.nlp.strings.offsets;

public interface Offset> extends Comparable {
  int asInt();

  boolean precedes(SelfType other);

  boolean precedesOrEquals(SelfType other);

  boolean follows(SelfType other);

  boolean followsOrEquals(SelfType other);

  /** Returns another offset of the same type, shifted by the specified distance. */
  SelfType shiftedCopy(int shiftAmount);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy