public enum SpecialVcfNumber extends java.lang.Enum<SpecialVcfNumber>
| Enum Constant and Description |
|---|
ONE_PER_ALT |
ONE_PER_ALT_OR_REF |
ONE_PER_GENOTYPE |
UNKNOWN_OR_UNBOUNDED |
| Modifier and Type | Method and Description |
|---|---|
static SpecialVcfNumber |
fromId(java.lang.String id) |
java.lang.String |
getId() |
static SpecialVcfNumber |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SpecialVcfNumber[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpecialVcfNumber ONE_PER_ALT
public static final SpecialVcfNumber ONE_PER_ALT_OR_REF
public static final SpecialVcfNumber ONE_PER_GENOTYPE
public static final SpecialVcfNumber UNKNOWN_OR_UNBOUNDED
public static SpecialVcfNumber[] values()
for (SpecialVcfNumber c : SpecialVcfNumber.values()) System.out.println(c);
public static SpecialVcfNumber valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null@Nullable public static SpecialVcfNumber fromId(@Nonnull java.lang.String id)
@Nonnull public java.lang.String getId()