Enum ShapeFunction
- java.lang.Object
-
- java.lang.Enum<ShapeFunction>
-
- com.chemaxon.descriptors.alignment.ShapeFunction
-
- All Implemented Interfaces:
Serializable
,Comparable<ShapeFunction>
@PublicAPI public enum ShapeFunction extends Enum<ShapeFunction> implements Serializable
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description AlignmentProperties.NodeType
getNodeType()
static ShapeFunction
valueOf(String name)
Returns the enum constant of this type with the specified name.static ShapeFunction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GAUSS
public static final ShapeFunction GAUSS
-
SPHERIC
public static final ShapeFunction SPHERIC
-
-
Method Detail
-
values
public static ShapeFunction[] 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 (ShapeFunction c : ShapeFunction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ShapeFunction 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
-
getNodeType
public AlignmentProperties.NodeType getNodeType()
-
-