public static enum GenomeLocParser.ValidationLevel extends java.lang.Enum<GenomeLocParser.ValidationLevel>
Enum Constant and Description |
---|
NONE
Don't do any real checking at all
|
STANDARD
Do the standard amount of validation
|
Modifier and Type | Method and Description |
---|---|
static GenomeLocParser.ValidationLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GenomeLocParser.ValidationLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GenomeLocParser.ValidationLevel STANDARD
public static final GenomeLocParser.ValidationLevel NONE
public static GenomeLocParser.ValidationLevel[] values()
for (GenomeLocParser.ValidationLevel c : GenomeLocParser.ValidationLevel.values()) System.out.println(c);
public static GenomeLocParser.ValidationLevel 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