Enum CESymmParameters.OrderDetectorMethod
- java.lang.Object
-
- java.lang.Enum<CESymmParameters.OrderDetectorMethod>
-
- org.biojava.nbio.structure.symmetry.internal.CESymmParameters.OrderDetectorMethod
-
- All Implemented Interfaces:
Serializable
,Comparable<CESymmParameters.OrderDetectorMethod>
- Enclosing class:
- CESymmParameters
public static enum CESymmParameters.OrderDetectorMethod extends Enum<CESymmParameters.OrderDetectorMethod>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANGLE
GRAPH_COMPONENT
SEQUENCE_FUNCTION
USER_INPUT
-
Field Summary
Fields Modifier and Type Field Description static CESymmParameters.OrderDetectorMethod
DEFAULT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CESymmParameters.OrderDetectorMethod
valueOf(String name)
Returns the enum constant of this type with the specified name.static CESymmParameters.OrderDetectorMethod[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SEQUENCE_FUNCTION
public static final CESymmParameters.OrderDetectorMethod SEQUENCE_FUNCTION
-
GRAPH_COMPONENT
public static final CESymmParameters.OrderDetectorMethod GRAPH_COMPONENT
-
ANGLE
public static final CESymmParameters.OrderDetectorMethod ANGLE
-
USER_INPUT
public static final CESymmParameters.OrderDetectorMethod USER_INPUT
-
-
Field Detail
-
DEFAULT
public static final CESymmParameters.OrderDetectorMethod DEFAULT
-
-
Method Detail
-
values
public static CESymmParameters.OrderDetectorMethod[] 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 (CESymmParameters.OrderDetectorMethod c : CESymmParameters.OrderDetectorMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CESymmParameters.OrderDetectorMethod 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
-
-