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