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

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

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

public final class ASRTime extends AbstractOffset {

  private ASRTime(int val) {
    super(val);
  }

  public static ASRTime of(int val) {
    return new ASRTime(val);
  }

  @Override
  public ASRTime shiftedCopy(final int shiftAmount) {
    return ASRTime.of(asInt() + shiftAmount);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy