public static enum MutationMention.Tool extends Enum<MutationMention.Tool>
Enum Constant and Description |
---|
CNVETH
Mutations found by the CNVRecognizer class
|
DBSNP
Mutations detected by the dbSNP recognition component
|
MUTATIONFINDER
Mutations found by MutationFinder
|
REGEX
Mutations found by our regular expressions for deprecated nomenclatures
|
SETH
Mutations found by SETH-NER (Backus Naur grammar)
|
UNKNOWN
Fallack for future tools
|
Modifier and Type | Method and Description |
---|---|
static MutationMention.Tool |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MutationMention.Tool[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MutationMention.Tool MUTATIONFINDER
public static final MutationMention.Tool SETH
public static final MutationMention.Tool REGEX
public static final MutationMention.Tool DBSNP
public static final MutationMention.Tool CNVETH
public static final MutationMention.Tool UNKNOWN
public static MutationMention.Tool[] values()
for (MutationMention.Tool c : MutationMention.Tool.values()) System.out.println(c);
public static MutationMention.Tool valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2016. All rights reserved.