public enum SpontaneousType extends Enum<SpontaneousType>
| Enum Constant and Description |
|---|
L_R |
NOT_SPONTANEOUS |
R_L |
| Modifier and Type | Method and Description |
|---|---|
static SpontaneousType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpontaneousType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpontaneousType L_R
public static final SpontaneousType R_L
public static final SpontaneousType NOT_SPONTANEOUS
public static SpontaneousType[] values()
for (SpontaneousType c : SpontaneousType.values()) System.out.println(c);
public static SpontaneousType 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 BioPAX. All rights reserved.