Package org.rcsb.strucmotif.domain.align
Enum AtomPairingScheme
- All Implemented Interfaces:
Serializable,Comparable<AtomPairingScheme>,java.lang.constant.Constable,Predicate<LabelAtomId>
Schemes on which atoms (by name) to use to align residues. Each entry is actually a
Predicate which tests
atom names and returns true if fall into that particular scheme.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionUse everything.Use alpha carbons only.Use backbone atoms only.Use beta carbons only.Use pseudo-atoms defined byResiduePairDescriptor.Use side-chain atoms only. -
Method Summary
Modifier and TypeMethodDescriptionbooleantest(LabelAtomId s) static AtomPairingSchemeReturns the enum constant of this type with the specified name.static AtomPairingScheme[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ALL
Use everything. -
ALPHA_CARBON
Use alpha carbons only. -
BETA_CARBON
Use beta carbons only. -
BACKBONE
Use backbone atoms only. -
SIDE_CHAIN
Use side-chain atoms only. -
PSEUDO_ATOMS
Use pseudo-atoms defined byResiduePairDescriptor.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
test
- Specified by:
testin interfacePredicate<LabelAtomId>
-