Package htsjdk.samtools
Class CigarElement
- java.lang.Object
-
- htsjdk.samtools.CigarElement
-
- All Implemented Interfaces:
Serializable
public class CigarElement extends Object implements Serializable
One component of a cigar string. The component comprises the operator, and the number of bases to which the operator applies.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description CigarElement(int length, CigarOperator operator)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
int
getLength()
CigarOperator
getOperator()
int
hashCode()
String
toString()
-
-
-
Field Detail
-
serialVersionUID
public static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
CigarElement
public CigarElement(int length, CigarOperator operator)
-
-
Method Detail
-
getLength
public int getLength()
-
getOperator
public CigarOperator getOperator()
-
-