Package chemaxon.marvin.alignment
Enum AlignmentProperties.NodeType
- java.lang.Object
-
- java.lang.Enum<AlignmentProperties.NodeType>
-
- chemaxon.marvin.alignment.AlignmentProperties.NodeType
-
- All Implemented Interfaces:
Serializable
,Comparable<AlignmentProperties.NodeType>
- Enclosing class:
- AlignmentProperties
public static enum AlignmentProperties.NodeType extends Enum<AlignmentProperties.NodeType> implements Serializable
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GAUSS_VOLUME_SIMPLE_44
GAUSS_VOLUME_SIMPLE_45
GAUSS_VOLUME_SIMPLE_FAST
GAUSS_VOLUME_SIMPLE_FULL
SPHERIC
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AlignmentProperties.NodeType
valueOf(String name)
Returns the enum constant of this type with the specified name.static AlignmentProperties.NodeType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SPHERIC
public static final AlignmentProperties.NodeType SPHERIC
-
GAUSS_VOLUME_SIMPLE_FULL
public static final AlignmentProperties.NodeType GAUSS_VOLUME_SIMPLE_FULL
-
GAUSS_VOLUME_SIMPLE_FAST
public static final AlignmentProperties.NodeType GAUSS_VOLUME_SIMPLE_FAST
-
GAUSS_VOLUME_SIMPLE_45
public static final AlignmentProperties.NodeType GAUSS_VOLUME_SIMPLE_45
-
GAUSS_VOLUME_SIMPLE_44
public static final AlignmentProperties.NodeType GAUSS_VOLUME_SIMPLE_44
-
-
Method Detail
-
values
public static AlignmentProperties.NodeType[] 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 (AlignmentProperties.NodeType c : AlignmentProperties.NodeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AlignmentProperties.NodeType valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-