public enum DigestionEnzyme extends Enum<DigestionEnzyme>
Java-Klasse für DigestionEnzyme.
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
<simpleType name="DigestionEnzyme">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="pepsin_a"/>
<enumeration value="chymotrypsin"/>
<enumeration value="proteinase_k"/>
<enumeration value="trypsin"/>
<enumeration value="no_enzyme"/>
<enumeration value="unknown_enzyme"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CHYMOTRYPSIN |
NO_ENZYME |
PEPSIN_A |
PROTEINASE_K |
TRYPSIN |
UNKNOWN_ENZYME |
| Modifier and Type | Method and Description |
|---|---|
static DigestionEnzyme |
fromValue(String v) |
String |
value() |
static DigestionEnzyme |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DigestionEnzyme[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DigestionEnzyme PEPSIN_A
public static final DigestionEnzyme CHYMOTRYPSIN
public static final DigestionEnzyme PROTEINASE_K
public static final DigestionEnzyme TRYPSIN
public static final DigestionEnzyme NO_ENZYME
public static final DigestionEnzyme UNKNOWN_ENZYME
public static DigestionEnzyme[] values()
for (DigestionEnzyme c : DigestionEnzyme.values()) System.out.println(c);
public static DigestionEnzyme 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 String value()
public static DigestionEnzyme fromValue(String v)
Copyright © 2007-2013. All Rights Reserved.