Class HydrophobicInteractionCriteria
- java.lang.Object
-
- io.github.WeronikaJargielo.protein_interaction_finder.HydrophobicInteractionCriteria
-
public final class HydrophobicInteractionCriteria extends java.lang.Object
Class representing criteria for identifying hydrophobic interactions. See here.
-
-
Constructor Summary
Constructors Constructor Description HydrophobicInteractionCriteria()
Instantiates new hydrophobic interaction criteria using default boundary values.HydrophobicInteractionCriteria(double minDistanceCAs, double maxDistanceCAs)
Instantiates new hydrophobic interaction criteria using custom boundary values.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
double
getMaxDistanceCAs()
Returns maximum distance between CA atoms of interaction participants.double
getMinDistanceCAs()
Returns minimum distance between CA atoms of interaction participants.int
hashCode()
java.lang.String
toString()
-
-
-
Constructor Detail
-
HydrophobicInteractionCriteria
public HydrophobicInteractionCriteria()
Instantiates new hydrophobic interaction criteria using default boundary values. See here.
-
HydrophobicInteractionCriteria
public HydrophobicInteractionCriteria(double minDistanceCAs, double maxDistanceCAs)
Instantiates new hydrophobic interaction criteria using custom boundary values. See here.- Parameters:
minDistanceCAs
- Minimum distance between CA atoms of interaction participants.maxDistanceCAs
- Maximum distance between CA atoms of interaction participants.
-
-
Method Detail
-
getMinDistanceCAs
public double getMinDistanceCAs()
Returns minimum distance between CA atoms of interaction participants.- Returns:
- Minimum distance between CA atoms of interaction participants.
-
getMaxDistanceCAs
public double getMaxDistanceCAs()
Returns maximum distance between CA atoms of interaction participants.- Returns:
- Maximum distance between CA atoms of interaction participants.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-