public static enum Emotion.Level extends Enum<Emotion.Level>
| 修飾子とタイプ | メソッドと説明 |
|---|---|
int |
value() |
static Emotion.Level |
valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static Emotion.Level[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final Emotion.Level NORMAL
public static final Emotion.Level HIGH
public static Emotion.Level[] values()
for(Emotion.Level c: Emotion.Level.values()) System.out.println(c);
public static Emotion.Level valueOf(String name)
name - 返される列挙型定数の名前。IllegalArgumentException - この列挙型に、指定した名前の定数がない場合NullPointerException - 引数がnullの場合public int value()
Copyright © 2014. All Rights Reserved.