/** 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; }
public static PlutchikBasicEmotion[] getAllPlutchikBasicEmotions() { return PlutchikBasicEmotion.values(); }