Package org.snpsift.lang.expression
Enum FieldIterator.IteratorType
- java.lang.Object
-
- java.lang.Enum<FieldIterator.IteratorType>
-
- org.snpsift.lang.expression.FieldIterator.IteratorType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FieldIterator.IteratorType>
- Enclosing class:
- FieldIterator
public static enum FieldIterator.IteratorType extends java.lang.Enum<FieldIterator.IteratorType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FieldIterator.IteratorType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FieldIterator.IteratorType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VAR
public static final FieldIterator.IteratorType VAR
-
EFFECT
public static final FieldIterator.IteratorType EFFECT
-
GENOTYPE
public static final FieldIterator.IteratorType GENOTYPE
-
GENOTYPE_VAR
public static final FieldIterator.IteratorType GENOTYPE_VAR
-
LOF
public static final FieldIterator.IteratorType LOF
-
NMD
public static final FieldIterator.IteratorType NMD
-
-
Method Detail
-
values
public static FieldIterator.IteratorType[] 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 (FieldIterator.IteratorType c : FieldIterator.IteratorType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FieldIterator.IteratorType 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
-
-