Uses of Class
ch.claudio.trainer.data.ConnectionType

Packages that use ConnectionType
ch.claudio.trainer   
ch.claudio.trainer.data   
 

Uses of ConnectionType in ch.claudio.trainer
 

Methods in ch.claudio.trainer with parameters of type ConnectionType
static void Model.associateSentence(Sentence from, Sentence to, ConnectionType type, User user)
          Create association between sentences.
 

Uses of ConnectionType in ch.claudio.trainer.data
 

Methods in ch.claudio.trainer.data that return ConnectionType
 ConnectionType ConnectedWords.getType()
           
static ConnectionType ConnectionType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ConnectionType[] ConnectionType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Constructors in ch.claudio.trainer.data with parameters of type ConnectionType
ConnectedWords(ConnectionType typeArg, Sentence sentence1Arg, Sentence sentence2Arg, User originatorArg)