public enum Stage extends Enum<Stage>
| 列挙型定数と説明 |
|---|
DEVELOPMENT
We want fast startup times at the expense of runtime performance and some up front error
checking.
|
PRODUCTION
We want to catch errors as early as possible and take performance hits up front.
|
TOOL
We're running in a tool (an IDE plugin for example).
|
public static final Stage TOOL
public static final Stage DEVELOPMENT
public static final Stage PRODUCTION
public static Stage[] values()
for(Stage c: Stage.values()) System.out.println(c);
public static Stage valueOf(String name)
name - 返される列挙型定数の名前。IllegalArgumentException - この列挙型に、指定した名前の定数がない場合NullPointerException - 引数がnullの場合Copyright © 2009–2016. All rights reserved.