Class SimplePoint

java.lang.Object
org.biojava.nbio.core.sequence.location.SimplePoint
All Implemented Interfaces:
Serializable, Comparable<Point>, Point
Direct Known Subclasses:
FuzzyPoint

public class SimplePoint extends Object implements Serializable, Point
Basic implementation of the Point interface.
Author:
ayates
See Also:
  • Nested Class Summary Link icon

    Nested classes/interfaces inherited from interface org.biojava.nbio.core.sequence.location.template.Point Link icon

    Point.Resolver<T extends Point>
  • Constructor Summary Link icon

    Constructors
    Modifier
    Constructor
    Description
    protected
     
     
    SimplePoint(int position)
     
     
    SimplePoint(int position, boolean unknown, boolean uncertain)
     
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    Returns a copy of this point
    int
     
    boolean
     
    Returns the position held by this object
    int
     
    boolean
    isHigher(Point point)
    Returns true if the point is higher in value to the current point
    boolean
    isLower(Point point)
    Returns true if the current point is at a lower position than the point given.
    boolean
    Returns a true if the exact point is unknown.
    boolean
    Returns true if the current position is unknown but is beyond the position encoded for.
    offset(int distance)
    Returns a new point offset by the given distance
    reverse(int length)
    Returns the equivalent position on the reverse strand
    protected int
    reverse(int position, int length)
     
    protected void
    setPosition(int position)
     
    protected void
    setUncertain(boolean uncertain)
     
    protected void
    setUnknown(boolean unknown)
     
     

    Methods inherited from class java.lang.Object Link icon

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details Link icon

    • SimplePoint Link icon

      protected SimplePoint()
    • SimplePoint Link icon

      public SimplePoint(int position)
    • SimplePoint Link icon

      public SimplePoint(int position, boolean unknown, boolean uncertain)
  • Method Details Link icon

    • getPosition Link icon

      public Integer getPosition()
      Description copied from interface: Point
      Returns the position held by this object
      Specified by:
      getPosition in interface Point
    • setPosition Link icon

      protected void setPosition(int position)
    • isUnknown Link icon

      public boolean isUnknown()
      Description copied from interface: Point
      Returns true if the current position is unknown but is beyond the position encoded for. This is the same as the position
      >80
      as encoded by UniProt.
      Specified by:
      isUnknown in interface Point
    • setUnknown Link icon

      protected void setUnknown(boolean unknown)
    • isUncertain Link icon

      public boolean isUncertain()
      Description copied from interface: Point
      Returns a true if the exact point is unknown. Equivalent position from UniProt is
      ?80
      .
      Specified by:
      isUncertain in interface Point
    • setUncertain Link icon

      protected void setUncertain(boolean uncertain)
    • reverse Link icon

      public Point reverse(int length)
      Description copied from interface: Point
      Returns the equivalent position on the reverse strand
      Specified by:
      reverse in interface Point
      Parameters:
      length - Length of the sequence to translate to
    • offset Link icon

      public Point offset(int distance)
      Description copied from interface: Point
      Returns a new point offset by the given distance
      Specified by:
      offset in interface Point
    • reverse Link icon

      protected int reverse(int position, int length)
    • equals Link icon

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • hashCode Link icon

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString Link icon

      public String toString()
      Overrides:
      toString in class Object
    • compareTo Link icon

      public int compareTo(Point o)
      Specified by:
      compareTo in interface Comparable<Point>
    • isLower Link icon

      public boolean isLower(Point point)
      Description copied from interface: Point
      Returns true if the current point is at a lower position than the point given.
      Specified by:
      isLower in interface Point
    • isHigher Link icon

      public boolean isHigher(Point point)
      Description copied from interface: Point
      Returns true if the point is higher in value to the current point
      Specified by:
      isHigher in interface Point
    • clonePoint Link icon

      public Point clonePoint()
      Description copied from interface: Point
      Returns a copy of this point
      Specified by:
      clonePoint in interface Point