public enum ModAttachment extends Enum<ModAttachment>
| Enum Constant and Description |
|---|
C_TERM |
N_TERM |
SIDE_CHAIN |
| Modifier and Type | Field and Description |
|---|---|
static Set<ModAttachment> |
all |
static Set<ModAttachment> |
cTermSet |
static Set<ModAttachment> |
nTermSet |
static Set<ModAttachment> |
sideChainSet |
static Set<ModAttachment> |
termSet |
| Modifier and Type | Method and Description |
|---|---|
static ModAttachment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModAttachment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModAttachment SIDE_CHAIN
public static final ModAttachment N_TERM
public static final ModAttachment C_TERM
public static final Set<ModAttachment> all
public static final Set<ModAttachment> nTermSet
public static final Set<ModAttachment> cTermSet
public static final Set<ModAttachment> sideChainSet
public static final Set<ModAttachment> termSet
public static ModAttachment[] values()
for (ModAttachment c : ModAttachment.values()) System.out.println(c);
public static ModAttachment 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.