Package org.jmol.c
Enum VDW
- java.lang.Object
-
- java.lang.Enum<VDW>
-
- org.jmol.c.VDW
-
-
Constructor Summary
Constructors Modifier Constructor Description private
VDW(int pt, java.lang.String type, java.lang.String type2)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getVdwLabel()
static VDW
getVdwType(java.lang.String label)
static VDW
getVdwType2(java.lang.String label)
static VDW
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static VDW[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JMOL
public static final VDW JMOL
-
BABEL
public static final VDW BABEL
-
RASMOL
public static final VDW RASMOL
-
BABEL21
public static final VDW BABEL21
-
AUTO_JMOL
public static final VDW AUTO_JMOL
-
AUTO_BABEL
public static final VDW AUTO_BABEL
-
AUTO_RASMOL
public static final VDW AUTO_RASMOL
-
AUTO
public static final VDW AUTO
-
USER
public static final VDW USER
-
ADPMAX
public static final VDW ADPMAX
-
ADPMIN
public static final VDW ADPMIN
-
HYDRO
public static final VDW HYDRO
-
BONDING
public static final VDW BONDING
-
TEMP
public static final VDW TEMP
-
NOJMOL
public static final VDW NOJMOL
-
NADA
public static final VDW NADA
-
-
Method Detail
-
values
public static VDW[] 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 (VDW c : VDW.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VDW 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 namejava.lang.NullPointerException
- if the argument is null
-
getVdwLabel
public java.lang.String getVdwLabel()
-
getVdwType
public static VDW getVdwType(java.lang.String label)
-
getVdwType2
public static VDW getVdwType2(java.lang.String label)
-
-