Serializable
, Comparable<StructuralVariantType>
public enum StructuralVariantType extends Enum<StructuralVariantType>
Enum Constant | Description |
---|---|
BND |
breakend structural variation.
|
CNV |
Copy number variable region
|
DEL |
Deletion relative to the reference
|
DUP |
Region of elevated copy number relative to the reference
|
INS |
Insertion of novel sequence relative to the reference
|
INV |
Inversion of reference sequence
|
Modifier and Type | Method | Description |
---|---|---|
static StructuralVariantType |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static StructuralVariantType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StructuralVariantType DEL
public static final StructuralVariantType INS
public static final StructuralVariantType DUP
public static final StructuralVariantType INV
public static final StructuralVariantType CNV
public static final StructuralVariantType BND
public static StructuralVariantType[] values()
for (StructuralVariantType c : StructuralVariantType.values()) System.out.println(c);
public static StructuralVariantType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null