public enum PhysicalProperty extends Enum<PhysicalProperty>
Enum Constant and Description |
---|
A214 |
A280 |
HPLC_INDEX |
HYDROPHOBICITY |
Modifier and Type | Method and Description |
---|---|
String |
getDescription() |
static PhysicalProperty |
valueOf(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(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 nullpublic String getDescription()