public static enum AuthManager.GroupOidListType extends java.lang.Enum<AuthManager.GroupOidListType>
列挙型定数と説明 |
---|
ONLY_SPECIFY
引数に指定したグループのみ取得
|
WITH_CHILDREN
子グループも同時に取得
|
WITH_PARENTS
親グループも同時に取得
|
修飾子とタイプ | メソッドと説明 |
---|---|
static AuthManager.GroupOidListType |
valueOf(java.lang.String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static AuthManager.GroupOidListType[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final AuthManager.GroupOidListType WITH_CHILDREN
public static final AuthManager.GroupOidListType WITH_PARENTS
public static final AuthManager.GroupOidListType ONLY_SPECIFY
public static AuthManager.GroupOidListType[] values()
for(AuthManager.GroupOidListType c: AuthManager.GroupOidListType.values()) System.out.println(c);
public static AuthManager.GroupOidListType valueOf(java.lang.String name)
name
- 返される列挙型定数の名前。java.lang.IllegalArgumentException
- この列挙型に、指定した名前の定数がない場合java.lang.NullPointerException
- 引数がnullの場合