public enum MolecularElement extends java.lang.Enum<MolecularElement>
Modifier and Type | Method and Description |
---|---|
static MolecularElement |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MolecularElement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MolecularElement H
public static final MolecularElement C
public static final MolecularElement N
public static final MolecularElement O
public static final MolecularElement S
public static final MolecularElement HDeut
public static final MolecularElement C13
public static final MolecularElement N15
public static final MolecularElement O18
public static MolecularElement[] values()
for (MolecularElement c : MolecularElement.values()) System.out.println(c);
public static MolecularElement valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2013. All Rights Reserved.