Exemplo n.º 1
0
 /** list all basic emotions, regardless from which theory */
 public static BasicEmotion[] listEmotions(EmotionTheory theory) {
   BasicEmotion[] values = null;
   switch (theory) {
     case PLUTCHIK:
       values = PlutchikBasicEmotion.values();
       break;
     case EKMAN:
       values = EkmanBasicEmotion.values();
       break;
   }
   return values;
 }
Exemplo n.º 2
0
 public static PlutchikBasicEmotion[] getAllPlutchikBasicEmotions() {
   return PlutchikBasicEmotion.values();
 }