Uses of Class
synesketch.emotion.Emotion

Packages that use Emotion
synesketch.emotion   
 

Uses of Emotion in synesketch.emotion
 

Methods in synesketch.emotion that return Emotion
 Emotion EmotionalState.getAnger()
          Getter for the Emotion of anger.
 Emotion EmotionalState.getDisgust()
          Getter for the Emotion of disgust.
 Emotion EmotionalState.getFear()
          Getter for the Emotion of fear.
 Emotion EmotionalState.getHappiness()
          Getter for the Emotion of happiness.
 Emotion EmotionalState.getSadness()
          Getter for the Emotion of sadness.
 Emotion EmotionalState.getStrongestEmotion()
          Returns Emotion with the highest weight.
 Emotion EmotionalState.getSurprise()
          Getter for the Emotion of surprise
 

Methods in synesketch.emotion that return types with arguments of type Emotion
 java.util.List<Emotion> EmotionalState.getFirstStrongestEmotions(int stop)
          Returns several emotions (Emotion instances) with the highest weight.
 

Methods in synesketch.emotion with parameters of type Emotion
 int Emotion.compareTo(Emotion arg0)
          Compares weights of current object and the one from the argument.
 

Constructor parameters in synesketch.emotion with type arguments of type Emotion
EmotionalState(java.lang.String text, java.util.SortedSet<Emotion> emotions, double generalWeight, int valence)
          Class constuctor which sets the text, general emotional weight, emotional valence, and all of the emotional weights (in a form of a SortedSet).