Enum Class SamPairUtil.PairOrientation

java.lang.Object
java.lang.Enum<SamPairUtil.PairOrientation>
htsjdk.samtools.SamPairUtil.PairOrientation
All Implemented Interfaces:
Serializable, Comparable<SamPairUtil.PairOrientation>, Constable
Enclosing class:
SamPairUtil

public static enum SamPairUtil.PairOrientation extends Enum<SamPairUtil.PairOrientation>
The possible orientations of paired reads. F = mapped to forward strand R = mapped to reverse strand FR means the read that's mapped to the forward strand comes before the read mapped to the reverse strand when their 5'-end coordinates are compared.
  • Enum Constant Details

  • Method Details

    • values

      public static SamPairUtil.PairOrientation[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static SamPairUtil.PairOrientation valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null