Enum CeParameters.ScoringStrategy
- java.lang.Object
-
- java.lang.Enum<CeParameters.ScoringStrategy>
-
- org.biojava.nbio.structure.align.ce.CeParameters.ScoringStrategy
-
- All Implemented Interfaces:
Serializable
,Comparable<CeParameters.ScoringStrategy>
- Enclosing class:
- CeParameters
public static enum CeParameters.ScoringStrategy extends Enum<CeParameters.ScoringStrategy>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CA_AND_SIDE_CHAIN_ANGLE_SCORING
CA_SCORING
SEQUENCE_CONSERVATION
SIDE_CHAIN_ANGLE_SCORING
SIDE_CHAIN_SCORING
-
Field Summary
Fields Modifier and Type Field Description static CeParameters.ScoringStrategy
DEFAULT_SCORING_STRATEGY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static CeParameters.ScoringStrategy
valueOf(String name)
Returns the enum constant of this type with the specified name.static CeParameters.ScoringStrategy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CA_SCORING
public static final CeParameters.ScoringStrategy CA_SCORING
-
SIDE_CHAIN_SCORING
public static final CeParameters.ScoringStrategy SIDE_CHAIN_SCORING
-
SIDE_CHAIN_ANGLE_SCORING
public static final CeParameters.ScoringStrategy SIDE_CHAIN_ANGLE_SCORING
-
CA_AND_SIDE_CHAIN_ANGLE_SCORING
public static final CeParameters.ScoringStrategy CA_AND_SIDE_CHAIN_ANGLE_SCORING
-
SEQUENCE_CONSERVATION
public static final CeParameters.ScoringStrategy SEQUENCE_CONSERVATION
-
-
Field Detail
-
DEFAULT_SCORING_STRATEGY
public static CeParameters.ScoringStrategy DEFAULT_SCORING_STRATEGY
-
-
Method Detail
-
values
public static CeParameters.ScoringStrategy[] 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 (CeParameters.ScoringStrategy c : CeParameters.ScoringStrategy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CeParameters.ScoringStrategy 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
-
toString
public String toString()
- Overrides:
toString
in classEnum<CeParameters.ScoringStrategy>
-
-