Package org.biojava.bio.dp
Class TrainerTransition
- java.lang.Object
-
- org.biojava.bio.dp.TrainerTransition
-
- All Implemented Interfaces:
java.io.Serializable
public class TrainerTransition extends java.lang.Object implements java.io.SerializableThis is a small and ugly class for storing a trainer and a transition.It is hash-code-able, and has a sensible equality operator.
- Author:
- Matthew Pocock
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TrainerTransition(TransitionTrainer trainer, State from, State to)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)Two transitions are equal if they have the same trainer, from and to states.inthashCode()The hash code is model.hashCode() ^ from.hashCode() ^ to.hashCode()
-
-
-
Field Detail
-
trainer
public TransitionTrainer trainer
-
from
public State from
-
to
public State to
-
-
Constructor Detail
-
TrainerTransition
public TrainerTransition(TransitionTrainer trainer, State from, State to)
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object o) throws java.lang.ClassCastExceptionTwo transitions are equal if they have the same trainer, from and to states.- Overrides:
equalsin classjava.lang.Object- Throws:
java.lang.ClassCastException
-
hashCode
public int hashCode()
The hash code is model.hashCode() ^ from.hashCode() ^ to.hashCode()- Overrides:
hashCodein classjava.lang.Object
-
-