Package ffx.xray
Enum Class RefinementMinimize.RefinementMode
- All Implemented Interfaces:
Serializable
,Comparable<RefinementMinimize.RefinementMode>
,Constable
- Enclosing class:
RefinementMinimize
public static enum RefinementMinimize.RefinementMode
extends Enum<RefinementMinimize.RefinementMode>
Different refinement mode selection types.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionrefine B factors only (if anisotropic, refined as such)refine B factors and occupanciesrefine coordinates onlyrefine coordinates and B factors (if anisotropic, refined as such)refine allrefine coordinates and occupanciesrefine occupancies only (alternate conformers are constrained) -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static RefinementMinimize.RefinementMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
COORDINATES
refine coordinates only -
BFACTORS
refine B factors only (if anisotropic, refined as such) -
COORDINATES_AND_BFACTORS
refine coordinates and B factors (if anisotropic, refined as such) -
OCCUPANCIES
refine occupancies only (alternate conformers are constrained) -
BFACTORS_AND_OCCUPANCIES
refine B factors and occupancies -
COORDINATES_AND_OCCUPANCIES
refine coordinates and occupancies -
COORDINATES_AND_BFACTORS_AND_OCCUPANCIES
refine all
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-