public enum RegisterTasks extends Enum<RegisterTasks>
Enum Constant and Description |
---|
INITIALIZED
トークンの登録が初期化されたことを示します。
|
POLLING_USER_VERIFICATION
ユーザの検証コードの入力を待機していることを示します。
|
REGISTERING_TOKEN
トークンの登録中であることを示します。
|
REQUESTING_USER_VERIFICATION_CODE
ユーザ検証コードの要求中であることを示します。
|
Modifier and Type | Method and Description |
---|---|
static RegisterTasks |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RegisterTasks[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegisterTasks INITIALIZED
public static final RegisterTasks REGISTERING_TOKEN
public static final RegisterTasks REQUESTING_USER_VERIFICATION_CODE
public static final RegisterTasks POLLING_USER_VERIFICATION
public static RegisterTasks[] values()
for (RegisterTasks c : RegisterTasks.values()) System.out.println(c);
public static RegisterTasks valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2023. All rights reserved.