Enum QsRelation
- All Implemented Interfaces:
Serializable
,Comparable<QsRelation>
,java.lang.constant.Constable
- Since:
- 5.0.0
- Author:
- Aleix Lafita
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionNone of the Subunits of one Structure have an equivalent in the other Structure.All the Subunits of one Structure have an equivalent in the other Structure.All the Subunits of one Structure have an equivalent in the other Structure, but the other Structure contains additional non-matched Subunits.Only a subset of Subunits of one Structure have an equivalent in the other Structure, and the other Structure also contains additional non-matched Subunits. -
Method Summary
Modifier and TypeMethodDescriptionstatic QsRelation
Returns the enum constant of this type with the specified name.static QsRelation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
EQUIVALENT
All the Subunits of one Structure have an equivalent in the other Structure.An example of this relation is comparing an A2B2 complex with C2 symmetry against a similar A2B2 complex with the same C2 symmetry axis (same topology).
-
PARTIAL_COMPLETE
All the Subunits of one Structure have an equivalent in the other Structure, but the other Structure contains additional non-matched Subunits.An example of this relation is comparing an A2B2 complex with C2 symmetry against a similar A2 complex with the same C2 symmetry axis. Another example is comparing an A4 complex with D2 symmetry against an A2 complex with the same C2 symmetry axis as one of the D2 axes.
-
PARTIAL_INCOMPLETE
Only a subset of Subunits of one Structure have an equivalent in the other Structure, and the other Structure also contains additional non-matched Subunits.An example of this relation is comparing an A2B2 complex with C2 symmetry against an A2C2 complex, where As are similar but B and C differ, with the same C2 symmetry axis. Only the A2 part of the structure matches.
-
DIFFERENT
None of the Subunits of one Structure have an equivalent in the other Structure.Two quaternary structures are different if they are not
EQUIVALENT
,PARTIAL_COMPLETE
orPARTIAL_INCOMPLETE
.
-
-
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
-