java.io.Serializable
, java.lang.Comparable<DepthMask.Method>
public static enum DepthMask.Method extends java.lang.Enum<DepthMask.Method>
Enum Constant | Description |
---|---|
ALL |
Select from all maskable genotypes at random
|
BYSAMPLE |
First select a sample at random then a maskable genotype from that sample
|
BYSNP |
First select a snp at random then a maskable genotype from that snp
|
Modifier and Type | Method | Description |
---|---|---|
static DepthMask.Method |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static DepthMask.Method[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DepthMask.Method ALL
public static final DepthMask.Method BYSNP
public static final DepthMask.Method BYSAMPLE
public static DepthMask.Method[] values()
for (DepthMask.Method c : DepthMask.Method.values()) System.out.println(c);
public static DepthMask.Method 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