Package org.snpeff.vcf
Enum VcfEntry.AlleleFrequencyType
- java.lang.Object
-
- java.lang.Enum<VcfEntry.AlleleFrequencyType>
-
- org.snpeff.vcf.VcfEntry.AlleleFrequencyType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<VcfEntry.AlleleFrequencyType>
- Enclosing class:
- VcfEntry
public static enum VcfEntry.AlleleFrequencyType extends java.lang.Enum<VcfEntry.AlleleFrequencyType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Common
LowFrequency
Rare
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static VcfEntry.AlleleFrequencyType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static VcfEntry.AlleleFrequencyType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Common
public static final VcfEntry.AlleleFrequencyType Common
-
LowFrequency
public static final VcfEntry.AlleleFrequencyType LowFrequency
-
Rare
public static final VcfEntry.AlleleFrequencyType Rare
-
-
Method Detail
-
values
public static VcfEntry.AlleleFrequencyType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (VcfEntry.AlleleFrequencyType c : VcfEntry.AlleleFrequencyType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VcfEntry.AlleleFrequencyType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-