Tabnine Logo
LocationIntervalTag.getStart
Code IndexAdd Tabnine to your IDE (free)

How to use
getStart
method
in
uk.ac.ebi.intact.application.dataConversion.psiUpload.model.LocationIntervalTag

Best Java code snippets using uk.ac.ebi.intact.application.dataConversion.psiUpload.model.LocationIntervalTag.getStart (Showing top 3 results out of 315)

origin: uk.ac.ebi.intact.app/data-conversion

public LocationTag( LocationIntervalTag from, LocationIntervalTag to ) {
  if ( from == null ) {
    throw new IllegalArgumentException( "From interval must not be null." );
  }
  if ( to == null ) {
    throw new IllegalArgumentException( "To interval must not be null." );
  }
  // ............***.... From
  // .....***........... To
  if ( from.getStart() > to.getEnd() ) {
    throw new IllegalArgumentException( "From lower bound (" + from.getStart() +
                      ") greater than the To upper bound (" +
                      to.getEnd() + ")." );
  }
  this.fromIntervalStart = from.getStart();
  this.fromIntervalEnd = from.getEnd();
  this.toIntervalStart = to.getStart();
  this.toIntervalEnd = to.getEnd();
}
origin: uk.ac.ebi.intact.util/data-conversion

public LocationTag( LocationIntervalTag from, LocationIntervalTag to ) {
  if ( from == null ) {
    throw new IllegalArgumentException( "From interval must not be null." );
  }
  if ( to == null ) {
    throw new IllegalArgumentException( "To interval must not be null." );
  }
  // ............***.... From
  // .....***........... To
  if ( from.getStart() > to.getEnd() ) {
    throw new IllegalArgumentException( "From lower bound (" + from.getStart() +
                      ") greater than the To upper bound (" +
                      to.getEnd() + ")." );
  }
  this.fromIntervalStart = from.getStart();
  this.fromIntervalEnd = from.getEnd();
  this.toIntervalStart = to.getStart();
  this.toIntervalEnd = to.getEnd();
}
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

public LocationTag( LocationIntervalTag from, LocationIntervalTag to ) {
  if ( from == null ) {
    throw new IllegalArgumentException( "From interval must not be null." );
  }
  if ( to == null ) {
    throw new IllegalArgumentException( "To interval must not be null." );
  }
  // ............***.... From
  // .....***........... To
  if ( from.getStart() > to.getEnd() ) {
    throw new IllegalArgumentException( "From lower bound (" + from.getStart() +
                      ") greater than the To upper bound (" +
                      to.getEnd() + ")." );
  }
  this.fromIntervalStart = from.getStart();
  this.fromIntervalEnd = from.getEnd();
  this.toIntervalStart = to.getStart();
  this.toIntervalEnd = to.getEnd();
}
uk.ac.ebi.intact.application.dataConversion.psiUpload.modelLocationIntervalTaggetStart

Popular methods of LocationIntervalTag

  • <init>
  • getEnd

Popular in Java

  • Making http requests using okhttp
  • setContentView (Activity)
  • getApplicationContext (Context)
  • onRequestPermissionsResult (Fragment)
  • Menu (java.awt)
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now