meshi.parameters
Enum AddAtomsFlag
java.lang.Object
java.lang.Enum<AddAtomsFlag>
meshi.parameters.AddAtomsFlag
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<AddAtomsFlag>
public enum AddAtomsFlag
- extends java.lang.Enum<AddAtomsFlag>
|
Method Summary |
static AddAtomsFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static AddAtomsFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
| Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
ADD_ATOMS_AND_FREEZE
public static final AddAtomsFlag ADD_ATOMS_AND_FREEZE
ADD_BACKBONE_AND_FREEZE
public static final AddAtomsFlag ADD_BACKBONE_AND_FREEZE
ADD_ATOMS
public static final AddAtomsFlag ADD_ATOMS
DO_NOT_ADD_ATOMS
public static final AddAtomsFlag DO_NOT_ADD_ATOMS
ADD_HYDROGENS_AND_FREEZE
public static final AddAtomsFlag ADD_HYDROGENS_AND_FREEZE
ADD_NOT_SET
public static final AddAtomsFlag ADD_NOT_SET
values
public static AddAtomsFlag[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (AddAtomsFlag c : AddAtomsFlag.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static AddAtomsFlag valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null