public enum NotificationType extends java.lang.Enum<NotificationType>
列挙型定数と説明 |
---|
CREATED
新規アカウントの作成通知
|
CREDENTIAL_RESET
パスワードのリセット通知
|
CREDENTIAL_UPDATED
パスワードが更新された通知
|
LOGIN_FAILED
ログイン失敗通知
|
LOGIN_SUCCESS
ログイン成功通知
|
PROPERTY_UPDATED
アカウントの属性が更新された通知
|
REMOVE
アカウントが削除される通知
|
ROCKEDOUT
アカウントのロックアウト通知
|
修飾子とタイプ | メソッドと説明 |
---|---|
static NotificationType |
valueOf(java.lang.String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static NotificationType[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final NotificationType CREATED
public static final NotificationType CREDENTIAL_RESET
public static final NotificationType ROCKEDOUT
public static final NotificationType CREDENTIAL_UPDATED
public static final NotificationType PROPERTY_UPDATED
public static final NotificationType REMOVE
public static final NotificationType LOGIN_SUCCESS
public static final NotificationType LOGIN_FAILED
public static NotificationType[] values()
for(NotificationType c: NotificationType.values()) System.out.println(c);
public static NotificationType valueOf(java.lang.String name)
name
- 返される列挙型定数の名前。java.lang.IllegalArgumentException
- この列挙型に、指定した名前の定数がない場合java.lang.NullPointerException
- 引数がnullの場合