Enum Overlap

java.lang.Object
java.lang.Enum<Overlap>
org.rcsb.strucmotif.domain.motif.Overlap
All Implemented Interfaces:
Serializable, Comparable<Overlap>, java.lang.constant.Constable, BiPredicate<InvertedIndexResiduePairIdentifier,InvertedIndexResiduePairIdentifier>

Describes the overlap between two ResiduePairIdentifier instances. Done by determining whether LabelSelection instances equal. Can be no overlap or both overlapping. Interesting case is when 1 pair overlaps. Can be LEFT_LEFT (left/first identifier of first word paired to left/first of second word) and so on.
  • Enum Constant Details

    • NONE

      public static final Overlap NONE
      No overlap.
    • LEFT_LEFT

      public static final Overlap LEFT_LEFT
      Left identifier of first word corresponds to left identifier of second word.
    • LEFT_RIGHT

      public static final Overlap LEFT_RIGHT
      Left identifier of first word corresponds to right identifier of second word.
    • RIGHT_LEFT

      public static final Overlap RIGHT_LEFT
      Right identifier of first word corresponds to left identifier of second word.
    • RIGHT_RIGHT

      public static final Overlap RIGHT_RIGHT
      Right identifier of first word corresponds to right identifier of second word.
    • BOTH

      public static final Overlap BOTH
      Both sides overlap.
  • Method Details