public enum SecurityAuthMethod extends java.lang.Enum<SecurityAuthMethod>
| 列挙型定数と説明 |
|---|
KERBEROS グローバルセキュリティが Kerberos であることを示します |
| 修飾子と型 | メソッドと説明 |
|---|---|
static SecurityAuthMethod | valueOf(java.lang.String name) 指定された名前を持つこの型の列挙定数を返します。 |
static SecurityAuthMethod[] | values() この列挙型の定数を含む配列を、宣言されている順序で返します。 |
public static final SecurityAuthMethod KERBEROS
public static SecurityAuthMethod[] values()
for (SecurityAuthMethod c : SecurityAuthMethod.values()) System.out.println(c);
public static SecurityAuthMethod valueOf(java.lang.String name)
name - 返される列挙定数の名前。java.lang.IllegalArgumentException - この列挙型に指定された名前の定数がない場合 java.lang.NullPointerException - 引数が null の場合