public enum PositionT extends Enum<PositionT>
Java class for position_t.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="position_t">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Anywhere"/>
<enumeration value="Any N-term"/>
<enumeration value="Any C-term"/>
<enumeration value="Protein N-term"/>
<enumeration value="Protein C-term"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ANY_C_TERM |
ANY_N_TERM |
ANYWHERE |
PROTEIN_C_TERM |
PROTEIN_N_TERM |
| Modifier and Type | Method and Description |
|---|---|
static PositionT |
fromValue(String v) |
String |
value() |
static PositionT |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PositionT[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PositionT ANYWHERE
public static final PositionT ANY_N_TERM
public static final PositionT ANY_C_TERM
public static final PositionT PROTEIN_N_TERM
public static final PositionT PROTEIN_C_TERM
public static PositionT[] values()
for (PositionT c : PositionT.values()) System.out.println(c);
public static PositionT 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()
Copyright © 2016. All Rights Reserved.