Package htsjdk.variant.variantcontext
Enum Class StructuralVariantType
- All Implemented Interfaces:
Serializable
,Comparable<StructuralVariantType>
,Constable
Type of Structural Variant as defined in the VCF spec 4.2
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic StructuralVariantType
Returns the enum constant of this class with the specified name.static StructuralVariantType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DEL
Deletion relative to the reference -
INS
Insertion of novel sequence relative to the reference -
DUP
Region of elevated copy number relative to the reference -
INV
Inversion of reference sequence -
CNV
Copy number variable region -
BND
breakend structural variation. VCF Specification : An arbitrary rearrangement event can be summarized as a set of novel adjacencies. Each adjacency ties together two breakends.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-