public enum InstanceType extends Enum<InstanceType>
| 修飾子とタイプ | メソッドと説明 |
|---|---|
String |
getName() |
static InstanceType |
valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static InstanceType[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final InstanceType SINGLETON
public static final InstanceType PROTOTYPE
public static final InstanceType APPLICATION
public static final InstanceType SESSION
public static final InstanceType REQUEST
public static final InstanceType OUTER
public static InstanceType[] values()
for(InstanceType c: InstanceType.values()) System.out.println(c);
public static InstanceType valueOf(String name)
name - 返される列挙型定数の名前。IllegalArgumentException - この列挙型に、指定した名前の定数がない場合NullPointerException - 引数がnullの場合public String getName()
Copyright © 2015–2019 The DBFlute Project. All rights reserved.