001/**
002 *
003 * Copyright 2018 Paul Schaub.
004 *
005 * Licensed under the Apache License, Version 2.0 (the "License");
006 * you may not use this file except in compliance with the License.
007 * You may obtain a copy of the License at
008 *
009 *     http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package org.jivesoftware.smackx.mood;
018
019/**
020 * Moods specified by XEP-0107: User Mood.
021 *
022 * @see <a href="https://xmpp.org/extensions/xep-0107.html#moods">
023 *     XEP-0107 ยง3: Mood Values</a>
024 */
025public enum Mood {
026    afraid,
027    amazed,
028    amorous,
029    angry,
030    annoyed,
031    anxious,
032    aroused,
033    ashamed,
034    bored,
035    brave,
036    calm,
037    cautious,
038    cold,
039    confident,
040    confused,
041    contemplative,
042    contented,
043    cranky,
044    crazy,
045    creative,
046    curious,
047    dejected,
048    depressed,
049    disappointed,
050    disgusted,
051    dismayed,
052    distracted,
053    embarrassed,
054    envious,
055    excited,
056    flirtatious,
057    frustrated,
058    grateful,
059    grieving,
060    grumpy,
061    guilty,
062    happy,
063    hopeful,
064    hot,
065    humbled,
066    humiliated,
067    hungry,
068    hurt,
069    impressed,
070    in_awe,
071    in_love,
072    indignant,
073    interested,
074    intoxicated,
075    invincible,
076    jealous,
077    lonely,
078    lost,
079    lucky,
080    mean,
081    moody,
082    nervous,
083    neutral,
084    offended,
085    outraged,
086    playful,
087    proud,
088    relaxed,
089    relieved,
090    remorseful,
091    restless,
092    sad,
093    sarcastic,
094    satisfied,
095    serious,
096    shocked,
097    shy,
098    sick,
099    sleepy,
100    spontaneous,
101    stressed,
102    strong,
103    surprised,
104    thankful,
105    thirsty,
106    tired,
107    undefined,
108    weak,
109    worried
110}