public enum PhysicalProperty extends java.lang.Enum<PhysicalProperty>
Enum Constant and Description |
---|
A214 |
A280 |
HPLC_INDEX |
HYDROPHOBICITY |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDescription() |
static PhysicalProperty |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PhysicalProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PhysicalProperty A214
public static final PhysicalProperty A280
public static final PhysicalProperty HPLC_INDEX
public static final PhysicalProperty HYDROPHOBICITY
public static PhysicalProperty[] values()
for (PhysicalProperty c : PhysicalProperty.values()) System.out.println(c);
public static PhysicalProperty 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 nullpublic java.lang.String getDescription()
[email protected]