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