public enum BlastMatrixEnum extends Enum<BlastMatrixEnum>
Enum Constant and Description |
---|
BLOSUM45 |
BLOSUM50 |
BLOSUM62 |
BLOSUM80 |
BLOSUM90 |
PAM250 |
PAM30 |
PAM70 |
Modifier and Type | Method and Description |
---|---|
static BlastMatrixEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlastMatrixEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlastMatrixEnum BLOSUM45
public static final BlastMatrixEnum BLOSUM50
public static final BlastMatrixEnum BLOSUM62
public static final BlastMatrixEnum BLOSUM80
public static final BlastMatrixEnum BLOSUM90
public static final BlastMatrixEnum PAM250
public static final BlastMatrixEnum PAM30
public static final BlastMatrixEnum PAM70
public static BlastMatrixEnum[] values()
for (BlastMatrixEnum c : BlastMatrixEnum.values()) System.out.println(c);
public static BlastMatrixEnum 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 © 2000–2019 BioJava. All rights reserved.